UNPKG

309 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.getDevPath = getDevPath;
7exports.getProdPath = getProdPath;
8
9function getDevPath(cjsPath) {
10 return cjsPath.replace(/\.js$/, ".dev.js");
11}
12
13function getProdPath(cjsPath) {
14 return cjsPath.replace(/\.js$/, ".prod.js");
15}
\No newline at end of file