Sha256: 899386035de169278e261b759f60b7b2181fb9bbeed71051a944f7a47d1f2fd3
Contents?: true
Size: 360 Bytes
Versions: 48
Compression:
Stored size: 360 Bytes
Contents
/*! * is-primitive <https://github.com/jonschlinkert/is-primitive> * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; // see http://jsperf.com/testing-value-is-primitive/7 module.exports = function isPrimitive(value) { return value == null || (typeof value !== 'function' && typeof value !== 'object'); };
Version data entries
48 entries across 48 versions & 17 rubygems