'use strict';
const { addGlobally } = require( 'omnipresent' );
addGlobally({
usefulFunction: x => (2 * x),
utils: require( './utils' ),
});
'use strict';
const { usefulFunction } = require( 'omnipresent' );
console.log( usefulFunction( 2 ) ); // logs 4