This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** IE9, IE10 and IE11 requires all of the following polyfills. **/ | |
import 'core-js/es6/array'; | |
import 'core-js/es6/date'; | |
import 'core-js/es6/function'; | |
import 'core-js/es6/map'; | |
import 'core-js/es6/math'; | |
import 'core-js/es6/number'; | |
import 'core-js/es6/object'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> tsc --lib es2016,dom --experimentalDecorators true --emitDecoratorMetadata true lazy.module.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% | |
%% Simple pool for gen_servers that only use :call | |
%% @author RJ <[email protected]> | |
%% | |
-module(gen_server_call_pool). | |
-behaviour(gen_server). | |
-include("irc.hrl"). | |
%% -------------------------------------------------------------------- |