Security update to Drupal 8.4.6
[yaffs-website] / node_modules / underscore.string / insert.js
1 var splice = require('./splice');
2
3 module.exports = function insert(str, i, substr) {
4   return splice(str, i, 0, substr);
5 };