@abhijithvijayan/ts-utils v1.2.2
❤️ 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("something@something.com");//trueisEmail("foo...bar-5@qux.com");//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 }); // 3splitArrayIntoChunks(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 astring-lowerRest, 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.257101242652775randomIntegerInRange(min, max: Returns a randomintegerbetween min (inclusive) and max (inclusive) - randomIntegerInRange(10, 20); // 16round(num, decimals): Rounds a number to a specified amount of digits - round(1.005, 2); // 1.01mask(value, num, maskWith): Replaces all, but the last num of characters with the specified mask character - Ifnumis 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'fillArray(prop, value): Initializes and fills an array with the specified values, Returns anarray-prop: ifnumberis passed, it will be used as the array size -prop: can be an object as well -length: array size -value: value to fill -fillIndex: 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, 4unique(arr): Returns all unique values in an array - unique(1, 2, 2, 3, 4, 4, 5); // 1, 2, 3, 4, 5take(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); // undefinedflatten(arr, depth): Flattens an array to specified depth, Returnsarray-depth, 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 invoked -wait: Time in millisecondsDefault: 100window.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 perwaitmilliseconds -wait: Time in millisecondsDefault: 100sleep(ms): Delays the execution of an asynchronous function -ms: Time in millisecondsDefault: 100async 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 beempty 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```js 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" ], ... } ```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::3-4for IP version 4 addresses, // eg:127.0.0.1,192.168.1.1-6for IP version 6 addresses, // eg:1::,ff02::1,1:2:3:4::6:7:8
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
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago