@abhijithvijayan/ts-utils
v1.2.2
Published
Collection of JavaScript utility functions
Readme
❤️ it? ⭐️ it on GitHub or Tweet about it.
Table of Contents
Installation
Ensure you have Node.js 10 or later installed. Then run the following:
# via npm
npm install @abhijithvijayan/ts-utils
# or yarn
yarn add @abhijithvijayan/ts-utilsUsage
import {isNull, get} from '@abhijithvijayan/ts-utils';API
isEmail(value): Performs RFC2822 Validation to emailisEmail("[email protected]");//trueisEmail("[email protected]");//false
isNull(value): Returnstrueif value isnull,falseotherwiseisUndefined(value): Returnstrueif value isundefined,falseotherwiseisNullOrUndefined(value): Returnstrueif value isnullorundefined,falseotherwiseisString(value): Returnstrueif value isstring,falseotherwiseisNumber(value): Returnstrueif value isnumber,falseotherwiseisFunction(value): Returnstrueif value isfunction,falseotherwiseisEmpty(value): Returnstrueif the value is anempty object,collection, hasno enumerable propertiesor is any type that is not considered acollection- isEmpty([]); // true
- isEmpty({}); // true
- isEmpty(""); // true
- isEmpty([1, 2]); // false
- isEmpty({ a: 1, b: 2 }); // false
- isEmpty("text"); // false
- isEmpty(123); // true - type is not considered a collection
- isEmpty(true); // true - type is not considered a collection
size(value): Gets the size of an array, object, set or string- size([1, 2, 3, 4, 5]); // 5
- size("size"); // 4
- size(new Set([1, 2, 3])); // 3
- size({ one: 1, two: 2, three: 3 }); // 3
splitArrayIntoChunks(arr, size): Splits array into chunks of arrays, Returnsarray- splitArrayIntoChunks([0, 1, 2, 3, 4], 2); // [[0, 1], [2, 3], [4]]
- splitArrayIntoChunks([0, 1, 2, 3, 4], 4); // [[0, 1, 2, 3], [4]]
removeWhitespaces(value): Remove all whitespaces from astring- removeWhitespaces("-- hello - world --"); // "--hello-world--"
capitalize(value, lowerRest): Capitalizes the first letter of astringlowerRest, iftrue, lower-cases the rest of the string,Default: false- capitalize("fooBar"); // 'FooBar'
- capitalize("fooBar", true); // 'Foobar'
toCamelCase(value): Converts a string to camelcase- toCamelCase("some_text_field_name"); // 'someTextFieldName'
- toCamelCase("Some label that needs to be camelized"); // 'someLabelThatNeedsToBeCamelized'
- toCamelCase("some-js-property"); // 'someJsProperty'
- toCamelCase("some-mixed_string with spaces_underscores-and-hyphens"); // 'someMixedStringWithSpacesUnderscoresAndHyphens'
randomString(): Generates a randomstringrandomNumberInRange(min, max): Returns a random number between min (inclusive) and max (exclusive)- randomNumberInRange(10, 15); // 12.257101242652775
randomIntegerInRange(min, max: Returns a randomintegerbetween min (inclusive) and max (inclusive)- randomIntegerInRange(10, 20); // 16
round(num, decimals): Rounds a number to a specified amount of digits- round(1.005, 2); // 1.01
mask(value, num, maskWith): Replaces all, but the last num of characters with the specified mask character- If
numis negative, the unmasked characters will be at the start of the string.Default: 4 maskWithchanges default character for the mask.Default: *- mask(1234567890); // '******7890'
- mask(1234567890, 3); // '*******890'
- mask(1234567890, -4, "$"); // '$$$$567890'
- If
fillArray(prop, value): Initializes and fills an array with the specified values, Returns anarrayprop: ifnumberis passed, it will be used as the array sizeprop: can be an object as welllength: array sizevalue: value to fillfillIndex: iftrue, the array will be filled with index value (overrides value field)
- fillArray(5, 2); // [2, 2, 2, 2, 2]
- fillArray(3, {}); // [{}, {}, {}]
- fillArray(1, null); // [null]
- fillArray({length: 2, value: 'test'}); // ['test', 'test']
- fillArray({length: 5, fillIndex: true}); // [0, 1, 2, 3, 4]
unique(arr): Returns all unique values in an array- unique([1, 2, 2, 3, 4, 4, 5]); // [1, 2, 3, 4, 5]
take(arr): Returns an array with n elements taken from the beginning- take([1, 2, 3], 5); // [1, 2, 3]
- take([1, 2, 3], 0); // []
last(arr): Returns the last element in an array- last([1, 2, 3]); // 3
- last([]); // undefined
- last([null]); // null
- last(undefined); // undefined
flatten(arr, depth): Flattens an array to specified depth, Returnsarraydepth, if passed, array will be flattened to the specified depth, else array will be flattened completely- flatten([1, [2, [3, [4, 5], 6], 7], 8]); // [1, 2, 3, 4, 5, 6, 7, 8]
- flatten([1, [2, [3, [4, 5], 6], 7], 8], 2); // [1, 2, 3, [4, 5], 6, 7, 8]
pipe(...fns): Performs left-to-right function composition(synchronous)const add5 = (x) => x + 5; const multiply = (x, y) => x * y; const multiplyAndAdd5 = pipe(multiply, add5); multiplyAndAdd5(5, 2); // 15get(from, selector, defaultValue): Retrieve a property indicated by the given selector from an objectconst obj = { selector: { to: { val: "val to select" } }, target: [1, 2, { a: "test" }], }; get(obj, "selector.to.val"); //"val to select" get(obj, "selector.to1.val", null); // null get(obj, "target.2.a"); // "test" get(obj, "selector.to1.val"); // undefined get(obj, "selector[to][val]"); // "val to select" get(obj, "target.2.[a]"); // "test" get(null, "something"); // undefined get(undefined, "something", 123); // 123debounce(fn, wait): Creates a debounced function that delays invoking func until after wait milliseconds have elapsed since the last time the debounced function was invokedwait: Time in millisecondsDefault: 100
window.addEventListener("resize", debounce(() => { console.log(window.innerWidth); console.log(window.innerHeight); }, 250)); // Will log the window dimensions at most every 250msthrottle(fn, wait): Creates a throttled function that only invokesfnat most once perwaitmillisecondswait: Time in millisecondsDefault: 100
sleep(ms): Delays the execution of an asynchronous functionms: Time in millisecondsDefault: 100
async function sleepyWork() { console.log("I'm going to sleep for 1 second."); await sleep(1000); console.log("I woke up after 1 second."); }objectToQueryParams(queryParams): Returns a query string generated from the key-value pairs of the given object- Note:
undefinedandNaNvalues(nested) will be skipped automatically- value will be
empty stringforfunctionsandnull nested arrayswill be flattened
- objectToQueryParams(undefined); // ""
- objectToQueryParams(null); // ""
- objectToQueryParams({}); // ""
- objectToQueryParams({ page: "1", limit: "10", key: undefined }); // 'page=1&limit=10'
- With a complex object that has nested values
objectToQueryParams({ foo: 'hello world', // resolves to [ "foo", "hello world" ] bar: { blah: 123, // resolves to [ "bar[blah]", "123" ] list: [1, 2, 3], // resolves to [ "bar[list][]", "1" ], [ "bar[list][]", "2" ], [ "bar[list][]", "3" ] 'nested array': [[4,5],[6,7]] // resolves to [ "bar[nested array][][]", "4" ], [ "bar[nested array][][]", "5" ], [ "bar[nested array][][]", "6" ], [ "bar[nested array][][]", "7" ] }, page: 1, // resolves to [ "page", "1" ] limit: undefined, // ignored check: false, // resolves to [ "check", "false" ] max: NaN, // ignored prop: null, // resolves to [ "prop", "" ] ' key value': 'with spaces' // resolves to [ "key value", "with spaces" ] }); // foo=hello%20world&bar[blah]=123&bar[list][]=1&bar[list][]=2&bar[list][]=3&bar[nested%20array][][]=4&bar[nested%20array][][]=5&bar[nested%20array][][]=6&bar[nested%20array][][]=7&page=1&check=false&prop=&key%20value=with%20spaces let params = new URLSearchParams(window.location.search); for (const param of p) { console.log(param); // [ "foo", "hello world" ], [ "bar[blah]", "123" ], ... }
- Note:
isBrowser(): Determines if the current runtime environment is a browserisIP(str): Tests if input is an IP address- Returns
0for invalid strings, // eg:1.1.1.01,1::2::34for IP version 4 addresses, // eg:127.0.0.1,192.168.1.16for IP version 6 addresses, // eg:1::,ff02::1,1:2:3:4::6:7:8
- Returns
Issues
Looking to contribute? Look for the Good First Issue label.
🐛 Bugs
Please file an issue here for bugs, missing documentation, or unexpected behavior.
Linting & TypeScript Config
- Shared Eslint & Prettier Configuration -
@abhijithvijayan/eslint-config - Shared TypeScript Configuration -
@abhijithvijayan/tsconfig
Credits
Some utils are inherited from https://www.30secondsofcode.org/js/p/1
License
MIT © Abhijith Vijayan
