UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

15 lines (14 loc) 622 B
function addslashes(str) { // From: http://phpjs.org/functions // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + improved by: Ates Goral (http://magnetiq.com) // + improved by: marrtins // + improved by: Nate // + improved by: Onno Marsman // + input by: Denny Wardhana // + improved by: Brett Zamir (http://brett-zamir.me) // + improved by: Oskar Larsson Högfeldt (http://oskar-lh.name/) // * example 1: addslashes("kevin's birthday"); // * returns 1: "kevin\\'s birthday" return (str + '').replace(/[\\"']/g, '\\$&').replace(/\u0000/g, '\\0'); }