https://github.com/Gozala/reducers
Raw File
Tip revision: 6895ba004e25200279d0eb95bb3ad933cbbaaabe authored by Irakli Gozalishvili on 31 October 2012, 03:35:08 UTC
Version 0.2.1
Tip revision: 6895ba0
end.js
"use strict";

var Box = require("./box")

// Exported function can be used for boxing values. This boxing is used by
// `accumulate` function to message end of the sequence.
module.exports = Box("End of the sequence")
back to top