@naverpay/hidash
Version:
improved lodash
14 lines (12 loc) • 670 B
TypeScript
declare const STRING_TAG = "[string String]";
declare const STRING_OBJECT_TAG = "[object String]";
declare const WEAK_MAP_TAG = "[object WeakMap]";
declare const WEAK_SET_TAG = "[object WeakSet]";
declare const FUNCTION_TAG = "[object Function]";
declare const NUMBER_OBJECT_TAG = "[object Number]";
declare const SYMBOL_TAG = "[object Symbol]";
declare const DATE_TAG = "[object Date]";
declare const REGEXP_TAG = "[object RegExp]";
declare const MAP_TAG = "[object Map]";
declare const SET_TAG = "[object Set]";
export { DATE_TAG, FUNCTION_TAG, MAP_TAG, NUMBER_OBJECT_TAG, REGEXP_TAG, SET_TAG, STRING_OBJECT_TAG, STRING_TAG, SYMBOL_TAG, WEAK_MAP_TAG, WEAK_SET_TAG };