UNPKG

react-native-integrate

Version:

Automate integration of additional code into React Native projects

7 lines (6 loc) 232 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.stringSplice = stringSplice; function stringSplice(text, idx, rem, str) { return text.slice(0, idx) + str + text.slice(idx + Math.abs(rem)); }