@vincent_za/utils
Advanced tools
| export { default as isEqual } from 'lodash/fp/isEqual'; | ||
| export { default as uniqBy } from 'lodash/fp/uniqBy'; | ||
| export { default as uniqWith } from 'lodash/fp/uniqWith'; | ||
| export { default as debounce } from 'lodash/fp/debounce'; | ||
| export { default as orderBy } from 'lodash/fp/orderBy'; | ||
| export { default as throttle } from 'lodash/fp/throttle'; | ||
| export { default as findKey } from 'lodash/fp/findKey'; |
+2
-2
| { | ||
| "name": "@vincent_za/utils", | ||
| "version": "0.2.9", | ||
| "version": "0.2.15", | ||
| "description": "A collection of shared utils and constants", | ||
@@ -23,3 +23,3 @@ "private": false, | ||
| }, | ||
| "gitHead": "fb2d52528c23283bb0cd20007e4dad647677a950" | ||
| "gitHead": "ff143f6490696509fe2977d9d15d6c747794a6fe" | ||
| } |
@@ -1,6 +0,20 @@ | ||
| export { default as date } from './date'; | ||
| export { default as mapping } from './mapping'; | ||
| export { default as ref } from './ref'; | ||
| export { default as shapePropTypes } from './shapePropTypes'; | ||
| export { default as shapeState } from './shapeState'; | ||
| export { default as validation } from './validation'; | ||
| export { FORMAT_DATE, FORMAT_TIME, FORMAT_DATE_DAY_MONTH, FORMAT_DATE_HOUR_MINUTE } from './date'; | ||
| export { ID_MINIMAL, NAME_MINIMAL } from './mapping'; | ||
| export { default as DEFAULT_RECT } from './ref'; | ||
| export { PROP_ASYNC_STATUS, PROP_ASYNC_STATUS_OPTIONAL, ELEMENT_CLIENT_RECT, PROP_MINIMAL } from './shapePropTypes'; | ||
| export { | ||
| IS_INITIAL, | ||
| IS_BUSY, | ||
| IS_ERROR, | ||
| IS_SUCCESSFUL, | ||
| ERROR_MESSAGE, | ||
| SHAPE_ASYNC_STATUS_INITIAL, | ||
| SHAPE_ASYNC_STATUS_REQUESTED, | ||
| SHAPE_ASYNC_STATUS_REQUESTED_INHERIT_INITIAL, | ||
| SHAPE_ASYNC_STATUS_SUCCEEDED, | ||
| SHAPE_ASYNC_STATUS_FAILED, | ||
| resetNestedState, | ||
| SHAPE_ELEMENT_CLIENT_RECT, | ||
| SHAPE_MINIMAL, | ||
| } from './shapeState'; | ||
| export { EMAIL_REGEX, REQUIRED, GREATER_THAN_ZERO } from './validation'; |
+0
-1
| export { default as determineAsyncStatus } from './determineAsyncStatus'; | ||
| export { default as getDomPath } from './getDomPath'; | ||
| export { default as lodash } from './lodash'; | ||
| export { default as removeBlanksFromObject } from './removeBlanksFromObject'; | ||
| export { default as removeDuplicatesFromArray } from './removeDuplicatesFromArray'; | ||
| export { default as uuid } from './uuid'; |
| export { default as isEqual } from 'lodash/fp/isEqual'; | ||
| export { default as uniqBy } from 'lodash/fp/uniqBy'; | ||
| export { default as uniqWith } from 'lodash/fp/uniqWith'; | ||
| export { default as debounce } from 'lodash/fp/debounce'; | ||
| export { default as orderBy } from 'lodash/fp/orderBy'; | ||
| export { default as throttle } from 'lodash/fp/throttle'; | ||
| export { default as findKey } from 'lodash/fp/findKey'; |
7352
5.56%198
7.03%