Show More
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/test/object/valid-value.js
| 15 lines
| 331 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var numIsNaN = require("../../number/is-nan"); | ||||
module.exports = function (t, a) { | ||||
var x; | ||||
a(t(0), 0, "0"); | ||||
a(t(false), false, "false"); | ||||
a(t(""), "", "''"); | ||||
a(numIsNaN(t(NaN)), true, "NaN"); | ||||
a(t((x = {})), x, "{}"); | ||||
a.throws(function () { t(); }, "Undefined"); | ||||
a.throws(function () { t(null); }, "null"); | ||||
}; | ||||