constant.js

export default function constant(value) {
  return function() {
    return value;
  };
}