UNPKG
4.5
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
Monadic test assertions
github.com/TylorS/4.5
TylorS/4.5
4.5
/
lib
/
combinators
/
concat.js
7 lines
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
var
chain_1 =
require
(
"./chain"
);
var
curry_1 =
require
(
"@typed/curry"
);
exports
.
concat
= curry_1.
curry
(
function
concat
(
assertion1, assertion2
) {
return
chain_1.
chain
(
function
(
) {
return
assertion2; }, assertion1); });
//# sourceMappingURL=concat.js.map