UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

17 lines (14 loc) 263 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.withCache = withCache; function withCache(generate) { let cache = null; return () => { if (cache === null) { cache = generate(); } return cache; }; }