UNPKG

tastypie

Version:

Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces

22 lines (14 loc) 461 B
var clamp = require('../math/clamp'); var toString = require('../lang/toString'); /** * Inserts a string at a given index. */ function insert(string, index, partial){ string = toString(string); if (index < 0) { index = string.length + index; } index = clamp(index, 0, string.length); return string.substr(0, index) + partial + string.substr(index); } module.exports = insert;