is-value.js 172 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 "use strict"; var _undefined = require("../function/noop")(); // Support ES3 engines module.exports = function (val) { return (val !== _undefined) && (val !== null); };