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
{ | |
"integrity": "sha512-nOnJP41e2MTxtqvsZW7ueINwP+GIVTgN5l+Y1KA9QcMH6SSaweFqBmxglGj3/07MQSOru7DBZk/IWAOmle5urg==", | |
"timestamp": "23423534534", | |
"version": "8.4.1", | |
"author": { | |
"name": "Some User", | |
"user": "some_user" | |
}, | |
"type": "package", | |
"name": "fuzz", |
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
class Foo { | |
constructor(numb) { | |
this.numb = numb; | |
} | |
then(success, fail) { | |
setTimeout(() => { | |
success(this.numb); | |
}, 500); | |
} |
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
'use strict'; | |
const { URL } = require('url'); | |
const http = require('http'); | |
// Simulate client making request to proxy and aborting mid flight | |
function fetch() { |
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
var url = require('url'); | |
// our secret which each client will verify against | |
const SECRET = 'foobar'; | |
module.exports = | |
{ | |
logging: | |
{ | |
name: 'numbat-1', |
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
<div id="map-buttons" class="btn-group" data-toggle="buttons-checkbox"> | |
<button id="layer1" class="btn active">Layer 1</button> | |
<button id="layer2" class="btn active">Layer 2</button> | |
<button id="layer3" class="btn active">Layer 3</button> | |
</div> | |
<script type="text/javascript"> | |
// Setup "layer" arrays | |
layer1Array = new Array(); | |
layer2Array = new Array(); |
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
// After minification | |
function Foo(){ | |
var e = { | |
veryLongKeyName:!0 | |
}; | |
function n(){ | |
return e.veryLongKeyName | |
} |