File size: 81 Bytes
9a14526
 
 
 
 
1
2
3
4
5
6
export default function constant(x) {
  return function() {
    return x;
  };
}