Sha256: 1366c960b8efaf49fa2c41c479e955c06f17362debaad2df38ba60f33b0dc2e5
Contents?: true
Size: 314 Bytes
Versions: 43
Compression:
Stored size: 314 Bytes
Contents
'use strict'; module.exports = { isString: function(arg) { return typeof(arg) === 'string'; }, isObject: function(arg) { return typeof(arg) === 'object' && arg !== null; }, isNull: function(arg) { return arg === null; }, isNullOrUndefined: function(arg) { return arg == null; } };
Version data entries
43 entries across 42 versions & 15 rubygems