@wixc3/common
TypeScript icon, indicating that this package has built-in type declarations

17.1.1 • Public • Published

npm version @wixc3/common on Github

Home > @wixc3/common

common package

Useful utils for strings, iterables, objects, maps, promises and other commonly used structures

Classes

Class Description
ErrorWithCode Creates an error with error code. Helpful when instanceof can't be used because the error was serialized and then deserialized.
UnreachableCaseError Allows the type checker to detect non-exhaustive switch statements.

Enumerations

Enumeration Description
NamingConvention

Functions

Function Description
addToSet(target, source)
assertIsString(value, errorMessage) Throws if value is not a string
asyncNoop()
at(iterable, index) Finds element by index, including negative index
awaitRecord(obj) Awaits a record of promises, and returns a record of their results.
capitalizeFirstLetter(val) Capitalize the first letter of a string
chain(value) Chain iterable operations, each acting on the output of the previous step
chain(value) Chain iterable operations, each acting on the output of the previous step
clamp(value, min, max)
concat(iterables)
createRandomIntWithSeed(seed)
defaults(_source, _defaultValues, deep, shouldUseDefault) Returns an object where missing keys and values/keys that satisfy shouldUseDefault to the value in shouldUseDefault.
delayed(fn, wait) Ensures func will be called with at least wait ms between runs.
enforceSequentialExecution(fn) Ensures that when the async function fn is called twice in a row, the second call only begins after the first one has finished (successfully or not).
enumValues(enumObj)
enumValues(enumObj)
equalIdents(reference, modified, newline) Matches the indentation of modified to the one of reference
errorToPlainObject(error)
escapeCSS(str) Replaced non alphanumeric character with CSS unicode representation
escapeRegExp(str) Returns a string safe to be used in RegExp
every(iterable, predicate)
exclude(excluded)
filter(iterable, predicate)
find(iterable, predicate)
first(iterable) Picks the first element of an iterable
flat(iterable, deep)
flatMap(iterable, mapFn)
forEach(iterable, fn)
get(obj, key) Similar to Map.get, but works for plain objects, and returns undefined for null maps and missing keys
get(obj, key)
getCartesianProduct(arrays)
getErrorCode(error) Returns error.code property if the error object has it, otherwise returns undefined.
getIn(obj, path)
getOs()
getValue(map, key, errorMessage) Returns a value by key, throws if the value is missing or the map null
getValue(map, key, errorMessage)
getValue(map, key, errorMessage)
groupBy(elements, property) Groups elements by the value of a property
has(obj, key) Similar to Map.has, but works for plain objects, and returns false for null maps
has(obj, key) Similar to Map.has, but works for plain objects, and returns false for null maps
has(obj, key)
histogram(iterable) Calculate a histogram of iterable elements
includes(iterable, item)
includesCaseInsensitive(str, substr) Checks if str contains substr ignoring capitalization
indexToLineAndColumn(content, pos, newline) Finds line an column by position index
isDefined(value) Given a value of type Nullable, validates value is T
isEmpty(iterable) Checks if an iterable is empty
isErrorLikeObject(error) Checks if the error is an object compatible with the Error interface; that is, it has properties 'name' and 'message' of type string. The object could be an instance of an Error, or it could be some other kind of object that has these properties.
isIterable(x)
isMap(m) Validates s is an instance of Map
isObject(value)

Checks if value is an object, e.g. a plain object, an array, a function, a regex, but not a primitive value.

Common usage scenario:

isObject(value) && value.foo === 'bar';
// Instead of:
typeof value === 'object' && value !== null && 'foo' in value && value.foo === 'bar';

| | isPlainObject(value) | Checks that value is a POJO | | isSet(s) | Validates s is an instance of Set | | isString(value) | Checks is value is a string | | isValidNamingConvention(namingConvention) | Checks if namingConvention is supported | | join(iterable, separator) | | | keys(map) | | | keys(map) | | | last(iterable) | Picks the last element of an iterable | | map(iterable, mapFn) | Map iterable elements | | mapKeys(obj, mapping) | Maps values of a plain object | | mapObject(obj, mapping) | Maps key value pairs of a plain object | | mapValues(obj, mapping) | Maps values of a plain object | | memoize(fn, argsHash) | | | minimalIndent(str) | Shifts all indentation to the left using the line with the least indentation as a baseline | | mulberry32(a) | | | newMacrotask() | | | next(iterable, item) | Find the element following an item | | noIdents(modified, separator) | Remove line indentation (heading whitespace) | | noop() | | | normToRage(normal, min, max) | | | noWhiteSpace(str) | Remove white spaces including empty lines | | once(fn) | Make a function executable only once, following calls are ignored | | partition(data, bucketsCount, predicate) | Partition unordered data into buckets of similar total weight | | pick(record, keys) | returns an object composed of the picked object properties | | prev(iterable, item) | Find the element before an item | | randomizedOrder(size) | | | reduce(iterable, reducer, initial) | | | reportError_2(ex) | Logs an error | | reverseObject(obj) | Reverses keys-values of an object, ignoring falsy values. First takes on value collisions. | | same(a, b, unordered) | Deep comparison of two objects | | seededRandomInt(min, max) | | | shuffle(array) | Shuffles an array | | size(iterable) | Evaluate the size of an iterable | | skip(iterable, count) | Skips the first elements of an iterable | | some(iterable, predicate) | | | sort(iterable, by) | | | splitIntoWords(str) | Breaks down a string to words, dropping non letters and numbers | | stringifyErrorStack(error) | | | swap(array, i, j) | Swaps elements of an array in place | | templateCompilerProvider(context) | Similar to templated string, given a fixed context object returns a function that parses strings in it | | toCamelCase(str) | Converts a string to camelCase | | toCSSCamelCase(str) | like toCamelCase(), but capitalizes first character if input starts with '-' | | toCSSKebabCase(str) | like toKebabCase(), but prepends '-' if first character of input is UpperCase | | toError(value) | Convert any kind of value to an error instance. Unless the value is already an error instance, it's stringified and used as the error message. | | toKebabCase(str) | Converts a string to kebab-case | | toMap(obj) | Coverts and object into a Map | | toNamingConvention(str, namingConvention) | Converts string formatting to a naming convention | | toPascalCase(str) | Converts a string to PascalCase | | toPascalCaseJsIdentifier(str) | Similar to toPascalCase(), but drops heading non-letters | | unique(iterable, by) | Creates iterable of unique elements | | values(map) | | | values(map) | |

Variables

Variable Description
isElectronRendererProcess
isMac
isWindows
remap remaps keys of obj based on rename map object,

Type Aliases

Type Alias Description
Awaited_2 The resolved value of T (if a promise, otherwise simply T)
Chain
Flat
Iter
IterableChain
Mapping
MapValue
NotIterable
Nullable T or null/undefined
ObjValue
Predicate
Remap
RemapFunc
Remapped
UnionToIntersection Make an intersection type from union
ValueChain
ValueOf union of all fields of T

Readme

Keywords

none

Package Sidebar

Install

npm i @wixc3/common

Weekly Downloads

547

Version

17.1.1

License

MIT

Unpacked Size

379 kB

Total Files

177

Last publish

Collaborators

  • dorza
  • vladba-wix
  • danielgovrin
  • yurimorkovnik
  • ranberko91
  • 0xrezaa
  • gregdamsky
  • alissawix
  • ekaterinaza
  • noammu
  • buchenpilar
  • oleksiiletushev
  • alisalachman
  • vladyslav-baliuk
  • yuriin
  • ilyakwix
  • matang
  • daomry
  • noama
  • shakederin
  • dlvhdr
  • plisovyi
  • pijusn
  • shireewill
  • haryelp
  • iuriikowix
  • itaywix
  • thealmightycrumb
  • devex-infra
  • olehr
  • tomrav
  • avi.vahl
  • alexswix
  • omerk
  • talga
  • cijoe
  • wix-ci
  • wixnpm
  • baraki
  • interal
  • alisey
  • danieleww
  • idoros
  • nadavwix
  • rashellek
  • wtfil
  • denysdovhan
  • vkobeliatskyi
  • pistolpete_
  • nettaru
  • igalh
  • netanelgilad
  • anatfenn
  • erezshasha
  • zemlanin
  • arnonkehat
  • ariki
  • itpurchases
  • danalevy
  • serhiiz
  • oleksandraab
  • idango10
  • mikanadel
  • tetiana0611
  • vladkar
  • yurii-v
  • elig-wix
  • nadav.a
  • vladyslavgoloshchapov