UNPKG

boats

Version:

Beautiful Open / Async Template System - Write less yaml with BOATS and Nunjucks.

9 lines (8 loc) 315 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (string) => { if (typeof string !== 'string') { throw new Error('Param passed to ucfirst is not type string but type: ' + typeof string); } return string.charAt(0).toUpperCase() + string.slice(1); };