2018-05-21 21:08:24 +02:00
/ * *
* @ author n1474335 [ n1474335 @ gmail . com ]
* @ copyright Crown Copyright 2016
* @ license Apache - 2.0
* /
2019-07-09 13:23:59 +02:00
import Operation from "../Operation.mjs" ;
2018-05-21 21:08:24 +02:00
import punycode from "punycode" ;
/ * *
* From Punycode operation
* /
class FromPunycode extends Operation {
/ * *
* FromPunycode constructor
* /
constructor ( ) {
super ( ) ;
this . name = "From Punycode" ;
this . module = "Encodings" ;
this . description = "Punycode is a way to represent Unicode with the limited character subset of ASCII supported by the Domain Name System.<br><br>e.g. <code>mnchen-3ya</code> decodes to <code>m\xfcnchen</code>" ;
2018-08-21 20:07:13 +02:00
this . infoURL = "https://wikipedia.org/wiki/Punycode" ;
2018-05-21 21:08:24 +02:00
this . inputType = "string" ;
this . outputType = "string" ;
this . args = [
{
"name" : "Internationalised domain name" ,
"type" : "boolean" ,
"value" : false
}
] ;
}
/ * *
* @ param { string } input
* @ param { Object [ ] } args
* @ returns { string }
* /
run ( input , args ) {
const idn = args [ 0 ] ;
if ( idn ) {
return punycode . toUnicode ( input ) ;
} else {
return punycode . decode ( input ) ;
}
}
}
export default FromPunycode ;