0.9.1 • Published 5 years ago

typescript-utilities v0.9.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

typescript-utilities

Set of generic TypeScript functions that are needed in almost every project.

Getting started

just install the package from NPM by running

 npm install --save typescript-utilities

Set of functions

Array

sortArray(arr: any, field?: string)

Orders any Array. If there is an array of objects, the second parameter specifies the "order_by" field.

Date

isValidDate(d: Date): boolean

Checks wheather a date object contains a valid date or not.

String

prettifyString(field: string): string

Pretty-prints any string, e.g. prettifyString(this_string) will be converted to This string

capitalizeTxt(txt: string): string

Capitalizes the first letter of a string

minimizeTxt(txt: string): string

Minimizes the first letter of a string

toCamelCase(str: string): string

Converts any string to CamelCase

Style

readCSSProperty(name: string): string

Get any CSS4 variable

License

MIT