Skip to content

Instantly share code, notes, and snippets.

View antalvarenga's full-sized avatar

António Alvarenga antalvarenga

View GitHub Profile
@antalvarenga
antalvarenga / app.js
Created February 23, 2018 00:24
main javascript file (priv/static/js/app.js) built with brunch on a fresh phoenix app
(function() {
'use strict';
var globals = typeof global === 'undefined' ? self : global;
if (typeof globals.require === 'function') return;
var modules = {};
var cache = {};
var aliases = {};
var has = {}.hasOwnProperty;