@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
21 lines (16 loc) • 310 B
JavaScript
/*!
* @techmely/utils
* Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com>
* MIT Licensed
*/
import {
intToHex
} from "./chunk-KQOFR6X4.mjs";
// src/intBuffer.ts
function intToBuffer(integer) {
const hex = intToHex(integer);
return Buffer.from(hex, "hex");
}
export {
intToBuffer
};