UNPKG

@dynamic-labs/sdk-react-core

Version:

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

11 lines (9 loc) 248 B
'use client' const stringifyURIQuery = (obj) => { const str = []; for (const prop in obj) { str.push(encodeURIComponent(prop) + '=' + encodeURIComponent(obj[prop])); } return str.join('&'); }; export { stringifyURIQuery };