aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/util.ts
blob: aeb68956b5cf722a1f49635d8e10e936141eac8f (plain) (blame)
1
2
3
4
5
6
import * as _ from 'lodash';

export const util = {
    boundNoop: _.noop.bind(_),
    createHrefOnClick: (href: string) => () => window.open(href, '_blank'),
};