"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.thru = thru; /** @license MIT License (c) copyright 2010-2017 original author or authors */ /** @author Brian Cavalier */ /** @author John Hann */ function thru(f, stream) { return f(stream); }