https://github.com/Gozala/reducers
Raw File
Tip revision: 9b7e50f82f0a0509ae0d28dcd0501c413b90aee3 authored by Irakli Gozalishvili on 27 October 2012, 06:30:57 UTC
Version 0.1.6
Tip revision: 9b7e50f
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