PATH:
usr
/
local
/
lib
/
node_modules
/
gulp
/
node_modules
/
es6-symbol
/
test
"use strict"; var SymbolPolyfill = require("../polyfill"); module.exports = function (t, a) { var symbol; a.throws(function () { t(undefined); }, TypeError, "Undefined"); a.throws(function () { t(null); }, TypeError, "Null"); a.throws(function () { t(true); }, TypeError, "Primitive"); a.throws(function () { t("raz"); }, TypeError, "String"); a.throws(function () { t({}); }, TypeError, "Object"); a.throws(function () { t([]); }, TypeError, "Array"); if (typeof Symbol !== "undefined") { symbol = Symbol("foo"); a(t(symbol), symbol, "Native"); } symbol = SymbolPolyfill(); a(t(symbol), symbol, "Polyfill"); };
[-] is-implemented.js
[edit]
[+]
..
[-] validate-symbol.js
[edit]
[-] polyfill.js
[edit]
[-] index.js
[edit]
[-] is-symbol.js
[edit]
[-] is-native-implemented.js
[edit]
[-] implement.js
[edit]