UNPKG

qoopido.nucleus

Version:

Lightweight, atomic and modular JavaScript utility library that strongly encourages the creation and usage of small yet flexible, reusable and easily maintainable modules.

11 lines (9 loc) 199 B
(function() { 'use strict'; function definition() { return function functionStringLcfirst(value) { return value.charAt(0).toLowerCase() + value.slice(1); }; } provide(definition); }());