@thani-sh/variable
v1.0.0
Published
A test node module which can hold a single value in memory
Downloads
1
Readme
@thani-sh/variable
A test node module which can hold a single value in memory.
import { getValue, setValue } from "@thani-sh/variable";
// set a value
setValue(1234);
console.log(getValue());
// 1234