Grammalecte  Diff

Differences From Artifact [ca76af0666]:

To Artifact [3dc39be41a]:


1
2

3
4
5
6
7
8
9

// Map


if (Map.prototype.grammalecte === undefined) {
    Map.prototype.gl_shallowCopy = function () {
        let oNewMap = new Map();
        for (let [key, val] of this.entries()) {
            oNewMap.set(key, val);
        }


>







1
2
3
4
5
6
7
8
9
10

// Map
/*jslint esversion: 6*/

if (Map.prototype.grammalecte === undefined) {
    Map.prototype.gl_shallowCopy = function () {
        let oNewMap = new Map();
        for (let [key, val] of this.entries()) {
            oNewMap.set(key, val);
        }