UNPKG

testcontainers

Version:

Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container

8 lines 296 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toNanos = exports.toSeconds = void 0; const toSeconds = (ms) => Math.trunc(ms * 1e-3); exports.toSeconds = toSeconds; const toNanos = (ms) => ms * 1e6; exports.toNanos = toNanos; //# sourceMappingURL=time.js.map