Files
sashinexists/node_modules/function-once/test/index.js
2024-12-07 13:18:31 +11:00

23 lines
332 B
JavaScript

/* IMPORT */
import {describe} from 'fava';
import once from '../dist/index.js';
/* MAIN */
describe ( 'Function Once', it => {
it ( 'works', t => {
const rand = once ( () => Math.random () );
const value = rand ();
t.is ( rand (), value );
t.is ( rand (), value );
t.is ( rand (), value );
});
});