diff options
Diffstat (limited to 'node_modules/es5-ext/test/array/__scopes.js')
| -rw-r--r-- | node_modules/es5-ext/test/array/__scopes.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/es5-ext/test/array/__scopes.js b/node_modules/es5-ext/test/array/__scopes.js new file mode 100644 index 00000000..bf47389f --- /dev/null +++ b/node_modules/es5-ext/test/array/__scopes.js @@ -0,0 +1,11 @@ +"use strict"; + +exports.Array = ["1", "2", "3"]; + +exports.Arguments = (function () { + return arguments; +}("1", "2", "3")); + +exports.String = "123"; + +exports.Object = { 0: "1", 1: "2", 2: "3", 3: "4", length: 3 }; |
