UNPKG

ruchy-syntax-tools

Version:

Comprehensive syntax highlighting and language support for the Ruchy programming language

7 lines (6 loc) 159 B
// Predicate-generating function. Often useful outside of Underscore. export default function constant(value) { return function() { return value; }; }