Ticket #6338: array.diff
| File array.diff, 346 bytes (added by Tobie, 3 years ago) |
|---|
-
src/array.js
old new 74 74 }); 75 75 }, 76 76 77 clone: function() { 78 return [].concat(this); 79 }, 80 77 81 inspect: function() { 78 82 return '[' + this.map(Object.inspect).join(', ') + ']'; 79 83 }