summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js b/bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js
new file mode 100644
index 00000000..8aa4b976
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/punycode2/index.js
@@ -0,0 +1,26 @@
+'use strict';
+
+/** Define the public API */
+module.exports = {
+ /**
+ * A string representing the current Punycode.js version number.
+ * @memberOf punycode
+ * @type String
+ */
+ version: '1.3.2',
+ /**
+ * An object of methods to convert from JavaScript's internal character
+ * representation (UCS-2) to Unicode code points, and back.
+ * @see <https://mathiasbynens.be/notes/javascript-encoding>
+ * @memberOf punycode
+ * @type Object
+ */
+ ucs2: {
+ decode: require('./ucs2/decode'),
+ encode: require('./ucs2/encode')
+ },
+ decode: require('./decode'),
+ encode: require('./encode'),
+ toASCII: require('./to-ascii'),
+ toUnicode: require('./to-unicode')
+};