lodash.takewhile
Advanced tools
+4
-109
| /** | ||
| * lodash 4.1.0 (Custom Build) <https://lodash.com/> | ||
| * lodash 4.1.1 (Custom Build) <https://lodash.com/> | ||
| * Build: `lodash modularize exports="npm" -o ./` | ||
@@ -14,4 +14,4 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
| hasIn = require('lodash.hasin'), | ||
| root = require('lodash._root'), | ||
| toPairs = require('lodash.topairs'); | ||
| toPairs = require('lodash.topairs'), | ||
| toString = require('lodash.tostring'); | ||
@@ -22,8 +22,2 @@ /** Used to compose bitmasks for comparison styles. */ | ||
| /** Used as references for various `Number` constants. */ | ||
| var INFINITY = 1 / 0; | ||
| /** `Object#toString` result references. */ | ||
| var symbolTag = '[object Symbol]'; | ||
| /** Used to match property names within property paths. */ | ||
@@ -37,19 +31,3 @@ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, | ||
| /** Used for built-in method references. */ | ||
| var objectProto = Object.prototype; | ||
| /** | ||
| * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) | ||
| * of values. | ||
| */ | ||
| var objectToString = objectProto.toString; | ||
| /** Built-in value references. */ | ||
| var Symbol = root.Symbol; | ||
| /** Used to convert symbols to primitives and strings. */ | ||
| var symbolProto = Symbol ? Symbol.prototype : undefined, | ||
| symbolToString = Symbol ? symbolProto.toString : undefined; | ||
| /** | ||
| * The base implementation of `_.get` without support for default values. | ||
@@ -356,89 +334,6 @@ * | ||
| /** | ||
| * Checks if `value` is object-like. A value is object-like if it's not `null` | ||
| * and has a `typeof` result of "object". | ||
| * This method returns the first argument given to it. | ||
| * | ||
| * @static | ||
| * @memberOf _ | ||
| * @category Lang | ||
| * @param {*} value The value to check. | ||
| * @returns {boolean} Returns `true` if `value` is object-like, else `false`. | ||
| * @example | ||
| * | ||
| * _.isObjectLike({}); | ||
| * // => true | ||
| * | ||
| * _.isObjectLike([1, 2, 3]); | ||
| * // => true | ||
| * | ||
| * _.isObjectLike(_.noop); | ||
| * // => false | ||
| * | ||
| * _.isObjectLike(null); | ||
| * // => false | ||
| */ | ||
| function isObjectLike(value) { | ||
| return !!value && typeof value == 'object'; | ||
| } | ||
| /** | ||
| * Checks if `value` is classified as a `Symbol` primitive or object. | ||
| * | ||
| * @static | ||
| * @memberOf _ | ||
| * @category Lang | ||
| * @param {*} value The value to check. | ||
| * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. | ||
| * @example | ||
| * | ||
| * _.isSymbol(Symbol.iterator); | ||
| * // => true | ||
| * | ||
| * _.isSymbol('abc'); | ||
| * // => false | ||
| */ | ||
| function isSymbol(value) { | ||
| return typeof value == 'symbol' || | ||
| (isObjectLike(value) && objectToString.call(value) == symbolTag); | ||
| } | ||
| /** | ||
| * Converts `value` to a string if it's not one. An empty string is returned | ||
| * for `null` and `undefined` values. The sign of `-0` is preserved. | ||
| * | ||
| * @static | ||
| * @memberOf _ | ||
| * @category Lang | ||
| * @param {*} value The value to process. | ||
| * @returns {string} Returns the string. | ||
| * @example | ||
| * | ||
| * _.toString(null); | ||
| * // => '' | ||
| * | ||
| * _.toString(-0); | ||
| * // => '-0' | ||
| * | ||
| * _.toString([1, 2, 3]); | ||
| * // => '1,2,3' | ||
| */ | ||
| function toString(value) { | ||
| // Exit early for strings to avoid a performance hit in some environments. | ||
| if (typeof value == 'string') { | ||
| return value; | ||
| } | ||
| if (value == null) { | ||
| return ''; | ||
| } | ||
| if (isSymbol(value)) { | ||
| return Symbol ? symbolToString.call(value) : ''; | ||
| } | ||
| var result = (value + ''); | ||
| return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; | ||
| } | ||
| /** | ||
| * This method returns the first argument provided to it. | ||
| * | ||
| * @static | ||
| * @memberOf _ | ||
| * @category Util | ||
@@ -445,0 +340,0 @@ * @param {*} value Any value. |
+17
-16
@@ -0,1 +1,3 @@ | ||
| The MIT License (MIT) | ||
| Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
@@ -5,19 +7,18 @@ Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas, | ||
| Permission is hereby granted, free of charge, to any person obtaining | ||
| a copy of this software and associated documentation files (the | ||
| "Software"), to deal in the Software without restriction, including | ||
| without limitation the rights to use, copy, modify, merge, publish, | ||
| distribute, sublicense, and/or sell copies of the Software, and to | ||
| permit persons to whom the Software is furnished to do so, subject to | ||
| the following conditions: | ||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
| The above copyright notice and this permission notice shall be | ||
| included in all copies or substantial portions of the Software. | ||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
| EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
| MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
| NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
| LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
| OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
| WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
+3
-3
| { | ||
| "name": "lodash.takewhile", | ||
| "version": "4.1.0", | ||
| "version": "4.1.1", | ||
| "description": "The lodash method `_.takeWhile` exported as a module.", | ||
@@ -21,7 +21,7 @@ "homepage": "https://lodash.com/", | ||
| "lodash._baseslice": "^4.0.0", | ||
| "lodash._root": "^3.0.0", | ||
| "lodash.get": "^4.0.0", | ||
| "lodash.hasin": "^4.0.0", | ||
| "lodash.topairs": "^4.0.0" | ||
| "lodash.topairs": "^4.0.0", | ||
| "lodash.tostring": "^4.0.0" | ||
| } | ||
| } |
+2
-2
@@ -1,2 +0,2 @@ | ||
| # lodash.takewhile v4.1.0 | ||
| # lodash.takewhile v4.1.1 | ||
@@ -18,2 +18,2 @@ The [lodash](https://lodash.com/) method `_.takeWhile` exported as a [Node.js](https://nodejs.org/) module. | ||
| See the [documentation](https://lodash.com/docs#takeWhile) or [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash.takewhile) for more details. | ||
| See the [documentation](https://lodash.com/docs#takeWhile) or [package source](https://github.com/lodash/lodash/blob/4.1.1-npm-packages/lodash.takewhile) for more details. |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
12887
-16.16%347
-21.67%+ Added
+ Added
- Removed