This file contains hidden or 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
const l = () => { | |
// tslint:disable-next-line:one-variable-per-declaration | |
const stack = new Error().stack, | |
caller = stack.split('\n')[2].trim(); | |
let args = Array.prototype.slice.call(arguments); | |
console.log.apply(this, [caller, args]); | |
}; | |
const i = () => { | |
// tslint:disable-next-line:one-variable-per-declaration |
This file contains hidden or 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
library itmap { | |
struct entry { | |
// Equal to the index of the key of this item in keys, plus 1. | |
uint keyIndex; | |
uint value; | |
} | |
struct itmap { | |
mapping(uint => entry) data; | |
uint[] keys; |
This file contains hidden or 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
module.exports = function witson(_) { | |
var service = { | |
encode: encode, | |
decode: newDecode | |
}; | |
var delimiters = { | |
objStart: ['@', '¿', '¡'], | |
objEnd: '#', | |
arrStart: '[', |
This file contains hidden or 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
0x627306090abaB3A6e1400e9345bC60c78a8BEf57 |
This file contains hidden or 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
console.log(`${Array(16).join("wat"-1)} Batman!`); |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<widget id="com.app.my" version="2.0.0" xmlns="http://www.w3.org/ns/widgets"> | |
<name>App BETA</name> | |
<description>app</description> | |
</widget> |
This file contains hidden or 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
internals/webpack/webpack.base.babel.js | |
- publicPath: '/', | |
+ publicPath: '/subfolder/', | |
File internals/webpack/webpack.prod.babel.js | |
- publicPath: '/', | |
+ publicPath: '/subfolder/', | |
app/app.js |
This file contains hidden or 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
(function(){ | |
'use strict'; | |
angular | |
.module('starter') | |
.factory('$openAmat', openAmat); | |
function openAmat($log, $http, $q){ | |
var service = { | |
nearBy: nearBy, |