8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
isInteger
overrides
1 parent af2d345 commit 7e9caa8Copy full SHA for 7e9caa8
src/mapping.js
@@ -153,6 +153,7 @@ export const overrides = {
153
'flattenDeep': { 'flattening': true },
154
'flattenDepth': { 'flattening': true },
155
'flip': { 'currying': true },
156
+ 'isInteger': { 'coercions': true },
157
'kebabCase': { 'unicode': true },
158
'lowerCase': { 'unicode': true },
159
'parseInt': { 'coercions': true },
test/coercions-fixtures/isInteger/actual.js
@@ -0,0 +1,3 @@
1
+import { isInteger } from 'lodash';
2
+
3
+isInteger(1);
0 commit comments