summaryrefslogtreecommitdiff
path: root/dependencies.js
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies.js')
-rw-r--r--dependencies.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/dependencies.js b/dependencies.js
index 3907ea7..8a8b114 100644
--- a/dependencies.js
+++ b/dependencies.js
@@ -1201,3 +1201,15 @@ function _check() {
return param;
}
}
+
+function ascii() {
+
+ var convertAscii = [];
+
+ for (var i = 0; i < arguments[0].length; i++) {
+ convertAscii.push(arguments[0].charCodeAt(i));
+ }
+
+ return convertAscii;
+}
+