UNPKG

@inkline/paper

Version:

Paper is a unified interface for defining components for Vue and React using a single code base.

10 lines (8 loc) 219 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalizeFirst = capitalizeFirst; function capitalizeFirst(string) { return string.charAt(0).toUpperCase() + string.slice(1); }