UNPKG

dockest

Version:

Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.

6 lines 287 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hashCode = void 0; const hashCode = (str) => Array.from(str).reduce((hash, char) => (Math.imul(31, hash) + char.charCodeAt(0)) | 0, 0); exports.hashCode = hashCode; //# sourceMappingURL=hash-code.js.map