UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

10 lines (6 loc) 263 B
'use client' 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /** Performs the true mathematical operation of "number mod target" */ const modulo = (number, target) => ((number % target) + target) % target; exports.modulo = modulo;