https://github.com/Gozala/reducers
Raw File
Tip revision: edf8ee8f4e5208bb19e7bd4d02393288aa3aef1d authored by Irakli Gozalishvili on 21 October 2012, 07:27:11 UTC
Version 0.1.0
Tip revision: edf8ee8
end.js
/*jshint asi: true undef: true es5: true node: true browser: true devel: true
         forin: true latedef: false globalstrict: true */

"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