UNPKG

purs-pkg-deps

Version:

Query package dependencies in PureScript package-sets

47 lines (45 loc) 916 B
"use strict"; exports.back = function(history) { return function() { return history.back(); }; }; exports.forward = function(history) { return function() { return history.forward(); }; }; exports.go = function(delta) { return function(history) { return function() { return history.go(delta); }; }; }; exports.pushState = function(a) { return function(docTitle) { return function(url) { return function(history) { return function() { return history.pushState(a, docTitle, url); }; }; }; }; }; exports.replaceState = function(a) { return function(docTitle) { return function(url) { return function(history) { return function() { return history.replaceState(a, docTitle, url); }; }; }; }; }; exports.state = function(history) { return function() { return history.state; }; };