/variable

A test node module which can hold a single value in memory

Primary LanguageJavaScriptMIT LicenseMIT

@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