File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11// Function.
2- import { isNumber } from './is-number.func' ;
3- import { isString } from './is-string.func' ;
2+ import { isNumberType } from './is-number-type .func' ;
3+ import { isStringType } from './is-string-type .func' ;
44import { isSymbol } from './is-symbol.func' ;
55import { resultCallback } from '../../lib/result-callback.func' ;
66// Type.
@@ -15,4 +15,4 @@ import { ResultCallback } from '../../type/result-callback.type';
1515 * @returns A `boolean` indicating whether or not the `value` is a `Key`.
1616 */
1717export const isKey : IsKey = ( value : any , callback : ResultCallback = resultCallback ) : value is Key =>
18- callback ( isString ( value ) || isNumber ( value ) || isSymbol ( value ) , value ) ;
18+ callback ( isStringType ( value ) || isNumberType ( value ) || isSymbol ( value ) , value ) ;
You can’t perform that action at this time.
0 commit comments