mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 13:01:43 -04:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
"use strict";
|
|
|
|
var _undefined = require("../function/noop")(); // Support ES3 engines
|
|
|
|
module.exports = function (val) {
|
|
return (val !== _undefined) && (val !== null);
|
|
};
|