UNPKG

nos-node.js-sdk

Version:

NOS Node.js SDK实现了NOS对象操作接口,基于此SDK能方便快速地实现JavaScript应用程序来使用NOS的对象存储服务。

23 lines (20 loc) 572 B
/** * Created by hzlichaolin on 2016/7/23. */ module.exports = function (str) { var temp = encodeURIComponent(str) temp = temp.replaceAll("'",escape("'")) temp = temp.replaceAll("!",escape("!")) temp = temp.replaceAll("~",escape("~")) temp = temp.replaceAll("\\(",escape("(")) temp = temp.replaceAll("\\)",escape(")")) return temp } String.prototype.replaceAll = function(s1,s2){ try { var regex = new RegExp(s1,"gm") } catch(e) { console.log("dump") } return this.replace(regex,s2); }