UNPKG

bsc_util

Version:

Utilities for tokens and token pairs on Binance Smart Chain network

15 lines (12 loc) 212 B
'use strict' /** * @private * @param {any} value * @returns {boolean} */ function isEthAddress(value) { return (value instanceof Buffer) && (value.length === 20) } module.exports = { isEthAddress }