mirror of
https://github.com/fofolee/uTools-ProcessKiller.git
synced 2025-09-28 23:24:15 +08:00
v0.0.2
This commit is contained in:
16
node_modules/is-undefined/lib/index.js
generated
vendored
Normal file
16
node_modules/is-undefined/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* isUndefined
|
||||
* Checks if a value is undefined or not.
|
||||
*
|
||||
* @name isUndefined
|
||||
* @function
|
||||
* @param {Anything} input The input value.
|
||||
* @returns {Boolean} `true`, if the input is `undefined`, `false` otherwise.
|
||||
*/
|
||||
|
||||
var u = void 0;
|
||||
module.exports = function (input) {
|
||||
return input === u;
|
||||
};
|
Reference in New Issue
Block a user