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) 198 B
(function() { 'use strict'; function definition() { return function functionStringUcfirst(value) { return value.charAt(0).toUpperCase() + value.slice(1); }; } provide(definition); }());