Add .gitignore to exclude all node packages and lock files
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.makeFetchMoreData = exports.makeSkip = void 0;
|
||||
const makeSkip = (skipTo) => ({
|
||||
action: 'skip',
|
||||
skipTo,
|
||||
});
|
||||
exports.makeSkip = makeSkip;
|
||||
const makeFetchMoreData = (bytesNeeded) => ({
|
||||
action: 'fetch-more-data',
|
||||
bytesNeeded,
|
||||
});
|
||||
exports.makeFetchMoreData = makeFetchMoreData;
|
||||
Reference in New Issue
Block a user