Skip to main content

Comfortable JS

Description

Comfortable JS is a JavaScript library that provides utilities for common programming tasks, that make coding in JavaScript easier and cleaner.

ComfortableJS uses Object-oriented programming (OOP) approach to build its libraries: Unlike other similar libraries that use the functional programming approach, for example, the popular Lodash library.

Installation

npm install comfortable

Example

import {$string} from 'comfortable/$string'
import {$value} from 'comfortable/$value'

$string('hello world').titleCase() // Hello World

$value(123).isString() // false

References