Initial boiler plate project
This commit is contained in:
10
node_modules/next/dist/esm/build/babel/loader/util.js
generated
vendored
Normal file
10
node_modules/next/dist/esm/build/babel/loader/util.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
export function consumeIterator(iter) {
|
||||
while(true){
|
||||
const { value, done } = iter.next();
|
||||
if (done) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=util.js.map
|
||||
Reference in New Issue
Block a user