Last active
May 7, 2022 01:05
Revisions
-
Erutan409 revised this gist
May 28, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ if (!Object.constructor.prototype.hasOwnProperty('name')) { Object.defineProperty(Object.constructor.prototype, 'name', { get: function () { return this.toString().trim().replace(/^\S+\s+(\w+)[\S\s]+$/, '$1'); } }) } -
Erutan409 revised this gist
Mar 25, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ (function () { if (!Object.constructor.prototype.hasOwnProperty('name')) { Object.defineProperty(Object.constructor.prototype, 'name', { get: function () { return this.toString().replace(/^\S+\s+(\w+)[\S\s]+$/, '$1'); } }) -
Erutan409 revised this gist
Mar 11, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,5 +5,5 @@ return this.toString().replace(/^\S+\s+(\w+)[\S\s]+$/, '$1'); } }) } })(); -
Erutan409 revised this gist
Mar 11, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,5 +5,5 @@ return this.toString().replace(/^\S+\s+(\w+)[\S\s]+$/, '$1'); } }) } // })(); -
Erutan409 revised this gist
Mar 11, 2019 . No changes.There are no files selected for viewing
-
Erutan409 created this gist
Mar 11, 2019 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ (function () { if (!Object.constructor.prototype.hasOwnProperty('name')) { Object.defineProperty(Object.constructor.prototype, 'name', { get: function name() { return this.toString().replace(/^\S+\s+(\w+)[\S\s]+$/, '$1'); } }) } })();