summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js b/bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js
new file mode 100644
index 00000000..97654578
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/punycode2/ucs2/encode.js
@@ -0,0 +1,24 @@
+'use strict';
+
+var stringFromCharCode = String.fromCharCode;
+
+/**
+ * Creates a string based on an array of numeric code points.
+ * @see `punycode.ucs2.decode`
+ * @memberOf punycode.ucs2
+ * @name encode
+ * @param {Array} codePoints The array of numeric code points.
+ * @returns {String} The new Unicode string (UCS-2).
+*/
+module.exports = function (array) {
+ return array.map(function (value) {
+ var output = '';
+ if (value > 0xFFFF) {
+ value -= 0x10000;
+ output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);
+ value = 0xDC00 | value & 0x3FF;
+ }
+ output += stringFromCharCode(value);
+ return output;
+ }).join('');
+};