Remove lodash/chunk (#13022)

This commit is contained in:
Justin Ridgewell
2021-03-19 10:52:25 -04:00
committed by GitHub
parent d12f9a98c7
commit 830a93cc97
3 changed files with 9 additions and 4 deletions

View File

@@ -22,7 +22,6 @@
"@babel/helper-validator-identifier": "workspace:^7.12.11",
"@babel/template": "workspace:^7.12.13",
"@babel/traverse": "workspace:^7.13.0",
"@babel/types": "workspace:^7.13.0",
"lodash": "^4.17.19"
"@babel/types": "workspace:^7.13.0"
}
}

View File

@@ -1,7 +1,6 @@
import assert from "assert";
import * as t from "@babel/types";
import template from "@babel/template";
import chunk from "lodash/chunk";
import { isModule } from "@babel/helper-module-imports";
@@ -419,3 +418,11 @@ function buildInitStatement(metadata: ModuleMetadata, exportNames, initExpr) {
}, initExpr),
);
}
function chunk(array, size) {
const chunks = [];
for (let i = 0; i < array.length; i += size) {
chunks.push(array.slice(i, i + size));
}
return chunks;
}