@exromany/lido-csm-sdk
Version:
[](https://github.com/lidofinance/lido-csm-sdk/blob/main/LICENSE.txt) [](h
10 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isHexadecimalString = void 0;
const isHexadecimalString = (input) => {
if (typeof input !== 'string')
return false;
return /^[0-9a-fA-F]+$/.test(input);
};
exports.isHexadecimalString = isHexadecimalString;
//# sourceMappingURL=is-hexadecimal-string.js.map