UNPKG

ns-suitescript-mocks

Version:

Collection of mocks that can be used to improve unit-tests for SuiteScript 2.0.

5 lines (3 loc) 98 B
module.exports = { random: (min, max) => Math.floor(Math.random() * (max - min + 1)) + min, };