ethers.js/packages/hash/lib/id.js

10 lines
346 B
JavaScript
Raw Permalink Normal View History

2020-10-18 23:19:16 -04:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
2021-03-07 18:24:04 -05:00
exports.id = void 0;
2020-10-18 23:19:16 -04:00
var keccak256_1 = require("@ethersproject/keccak256");
var strings_1 = require("@ethersproject/strings");
function id(text) {
2021-10-16 02:29:27 -04:00
return (0, keccak256_1.keccak256)((0, strings_1.toUtf8Bytes)(text));
2020-10-18 23:19:16 -04:00
}
exports.id = id;
//# sourceMappingURL=id.js.map