Home
Original page
constant.js
export
default
function
constant
(
value
) {
return
function
(
) {
return
value; }; }