UNPKG

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