Skip to content
Snippets Groups Projects
Commit 35af99ab authored by David Fugate's avatar David Fugate
Browse files
parent e0d156d3
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
* @description Apply String.prototype.slice to Object instance, and call instance.slice(...).slice(...)
*/
var __instance = function(){};
var __instance = { toString: function() { return "function(){}";} };
__instance.slice = String.prototype.slice;
......
......@@ -10,7 +10,7 @@
* @description Instance is function(){}
*/
var __instance = function(){};
var __instance = { toString: function() { return "function(){}";} };
__instance.split = String.prototype.split;
......
......@@ -9,7 +9,7 @@
* @description Apply String.prototype.substring to Object instance. Call instance.substring(...).substring(...)
*/
var __instance = function(){};
var __instance = { toString: function() { return "function(){}";} };
__instance.substring = String.prototype.substring;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment