securityos/node_modules/babel-plugin-styled-components/lib/utils/prefixDigit.js

10 lines
195 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = prefixLeadingDigit;
function prefixLeadingDigit(str) {
return str.replace(/^(\d)/, 'sc-$1');
}