constant.js 96 B

1234567
  1. "use strict";
  2. module.exports = function (value) {
  3. return function () {
  4. return value;
  5. };
  6. };