Skip to content
#

loaders

Here are 126 public repositories matching this topic...

Kolobok12309
Kolobok12309 commented Jan 14, 2020

Mb for nuxt asyncData api, because waitFor not working for this
Something like this

export default function (waiter, func) {
  return async (...args) => {
    const { app } = args[0];

    try {
      app.wait.start(waiter);
      return await func.apply(this, args);
    } finally {
      app.wait.end(waiter);
    }
  };
};

Or if vue-wait have this function, sorry a

loaders.gl
ibgreen
ibgreen commented Mar 5, 2020

See discussion end of #662

logging explicit instructions to install @loaders.gl/polyfills if polyfills are detected as missing would certainly help anyone else who may find themselves facing similar issues.

Core could e.g. look for TextDecoder on global scope and issue a warning.

ericclemmons
ericclemmons commented Nov 7, 2016

Hi!

I was curious if there was a reason why the internal API wasn't used? Was it to simplify usage, or because the actual lib API is kinda hard to figure out? ;)

(It took me a while to get it working as expected)

const documentation = require("documentation");

documentation.build([
  "./path/to/file.js",
], {
  github: true,
}, (err, comments) => {
  console.log(
    docu

Improve this page

Add a description, image, and links to the loaders topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the loaders topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.