I hereby claim:
- I am tornqvist on github.
- I am tornqvist (https://keybase.io/tornqvist) on keybase.
- I have a public key ASDWh8Y2mf6L3E_f95VsOI-vcBA87HOWb9-UH1UqhhFDhQo
To claim this, I am signing this object:
{ | |
"name": "my-module", | |
"version": "1.0.0", | |
"author": "Carl Törnqvist <[email protected]>", | |
"scripts": { | |
"test": "npm run lint:js && npm run lint:css", | |
"lint:js": "eslint ./components", | |
"lint:css": "postcss -u postcss-bem-linter -u postcss-reporter --postcss-reporter.throwError true -d $TMPDIR ./components/**/*.css" | |
}, | |
"devDependencies": { |
I hereby claim:
To claim this, I am signing this object:
// Welcome! require() some modules from npm (like you were using browserify) | |
// and then hit Run Code to run your code on the right side. | |
// Modules get downloaded from browserify-cdn and bundled in your browser. | |
const html = require('bel'); | |
const Nanocomponent = require('nanocomponent'); | |
const morph = require('nanomorph'); | |
const Component = function () { | |
this.greetee = 'who'; | |
Nanocomponent.call(this); |
{"lastUpload":"2017-05-23T18:09:42.685Z","extensionVersion":"v2.8.0"} |
const html = require('bel'); | |
const string = require('pelo'); | |
document.body.innerHTML = string` | |
<input disabled=${ false } placeholder="Wut, I'm disabled?" /> | |
`; | |
document.body.appendChild(html` | |
<input disabled=${ false } placeholder="I'm not disabled!" /> | |
`); |
var html = require('bel') | |
var assert = require('assert') | |
var Nanocomponent = require('nanocomponent') | |
function Component (name) { | |
Nanocomponent.call(this, name) | |
this.cache = {} | |
} | |
Component.prototype = Object.create(Nanocomponent.prototype) |
var html = require('bel') | |
var assert = require('assert') | |
var morph = require('nanomorph') | |
var Nanocomponent = require('nanocomponent') | |
function Component (name) { | |
Nanocomponent.call(this, name) | |
} | |
Component.prototype = Object.create(Nanocomponent.prototype) |
var html = require('bel') | |
var assert = require('assert') | |
var morph = require('nanomorph') | |
var Nanocomponent = require('nanocomponent') | |
function Component (name) { | |
Nanocomponent.call(this, name) | |
} | |
Component.prototype = Object.create(Nanocomponent.prototype) |
var html = require('bel') | |
var assert = require('assert') | |
var morph = require('nanomorph') | |
var Nanocomponent = require('nanocomponent') | |
function Component (name) { | |
Nanocomponent.call(this, name) | |
} | |
Component.prototype = Object.create(Nanocomponent.prototype) |