How to use the dmd.cache function in dmd

To help you get started, we’ve selected a few dmd examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jsdoc2md / jsdoc-to-markdown / es5 / lib / jsdoc-to-markdown.js View on Github external
return jsdocApi.cache.clear().then(function () {
        return dmd.cache.clear();
      });
    }
github jsdoc2md / jsdoc-to-markdown / index.js View on Github external
    return jsdocApi.cache.clear().then(() => dmd.cache.clear())
  }