@zohodesk/utils
v1.3.16
Published
DOT Utils Collection
Downloads
3,093
Maintainers
Readme
DOT - Util Collections
In this package, We provide lots of util fuctions for web devlopment
1.3.16
getCurrentTime,objectCRUD,arrayCRUD,deepEqual,ArrayManager,ObjectManager,eventListenerUtilsutil added.
1.3.15
- renderNodeUtils
renderNodefunction added to render content that can be either a function or a React element.isRenderablefunction added to check if the content is renderable (either a function or a valid React element).
1.3.14
- StringUtils
- String Utils Methods added
1.3.13
mergeStyleissue fix
1.3.12
mergeStylefunctionality updated. Composed classes will also update if it is inside that file.
// Before
const style = mergeStyle(
{ a: '1', b: '1 2' },
{ a: 'a' }
);
// style = { a: '1 a', b: '1 2' }
// After
const style = mergeStyle(
{ a: '1', b: '1 2' },
{ a: 'a' }
);
// style = { a: '1 a', b: '1 a 2' }compileClassNamescode optimized. Will not support other than object as argument.
