UNPKG

npm-fetch-changelog

Version:

fetch the changelog for an npm package from GitHub

4 lines 103 B
export default function once(fn) { let result; return (...args) => (result ||= [fn(...args)])[0]; }