https://github.com/Gozala/reducers
Raw File
Tip revision: 5d6ad72e59e1d2edc2c8275009d81b1e8a083716 authored by Irakli Gozalishvili on 25 October 2012, 02:53:20 UTC
Version 0.1.3
Tip revision: 5d6ad72
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