UNPKG

194 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = prefixLeadingDigit;
7function prefixLeadingDigit(str) {
8 return str.replace(/^(\d)/, 'sc-$1');
9}
\No newline at end of file