Repository URL to install this package:
|
Version:
3.0.0 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = prefixLeadingDigit;
function prefixLeadingDigit(str) {
return str.replace(/^(\d)/, 'sc-$1');
}