I hereby claim:
- I am jspies on github.
- I am jspies (https://keybase.io/jspies) on keybase.
- I have a public key ASC5crRFyQVXTAUGMtvR3KpoH4j3MZXo8ADGUEvUEHMCxQo
To claim this, I am signing this object:
const glob = require("glob"); | |
(async () => { | |
const matches = glob.sync("**/*_test.mjs"); | |
for (const match of matches) { | |
await import(`../${match}`) | |
} | |
run(); | |
})() |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash | |
nvm install 11.4 | |
npm install serverless -g | |
serverless create --template cloudflare-workers-enterprise —path demo |
const path = require('path'); | |
module.exports = { | |
entry: { | |
hello: path.join(__dirname, './src/handlers/hello.ts') | |
}, | |
resolve: { | |
extensions: ['.ts', '.js'] | |
}, | |
module: { |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
id: 63679, | |
name: null, | |
guid: "a00a766a-404a-4cd7-b45c-b3643021d1b2", | |
description: null, | |
tier: null, | |
point_cost: null, | |
skill_type: "Buff", | |
chain_skill_guid: null, |
// loop through the 'paper' variable from Raphael JS and build up the JSON object describing all images and paths within it. | |
loadJSON = function(paper, json) { | |
var set = paper.set(); | |
$.each(json, function(index, node) { | |
try { | |
var el = paper[node.type]().attr(node); | |
set.push(el); | |
} catch(e) {} | |
}); | |
return set; |