UNPKG

react-native-navigation

Version:

React Native Navigation - truly native navigation for iOS and Android

15 lines (12 loc) 264 B
// @ts-check /** * @param {string} to * @param {number} fromIndex * @param {string} what */ function insertString(to, fromIndex, what) { return to.substring(0, fromIndex) + what + to.substring(fromIndex, to.length); } module.exports = { insertString, };