Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/has-bigints/index.js b/node_modules/has-bigints/index.js
new file mode 100644
index 0000000..dd9af1d
--- /dev/null
+++ b/node_modules/has-bigints/index.js
@@ -0,0 +1,10 @@
+'use strict';
+
+var $BigInt = global.BigInt;
+
+module.exports = function hasNativeBigInts() {
+ return typeof $BigInt === 'function'
+ && typeof BigInt === 'function'
+ && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers
+ && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers
+};