Skip to content
Snippets Groups Projects
constant.js 89 B
Newer Older
  • Learn to ignore specific revisions
  • export default function (x) {
        return function constant() {
            return x;
        };
    }