UNPKG

vrack-db

Version:

This is an In Memory database designed for storing time series (graphs).

13 lines (12 loc) 312 B
"use strict"; /* * Copyright © 2023 Boris Bobylev. All rights reserved. * Licensed under the Apache License, Version 2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); class Utility { static uid() { return Math.random().toString(16).slice(2); } } exports.default = Utility;