Skip to content

Instantly share code, notes, and snippets.

@naosim
Created July 16, 2019 22:42
Show Gist options
  • Save naosim/4765fee1cf9a7bc32987952bc667a4bb to your computer and use it in GitHub Desktop.
Save naosim/4765fee1cf9a7bc32987952bc667a4bb to your computer and use it in GitHub Desktop.
【GAS】複数メソッドをロードする
/**
* 複数メソッドをロードする
* 依存:
* - retryFetch https://gist.github.com/naosim/8fc6033b6f92e426eddc0424e7f7aa71
*/
function loadLibForMethods(methodNames, url) {
eval(retryFetch(url))
var result = {};
methodNames.forEach(function(name) {
result[name] = eval(name);
})
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment