Skip to content

Instantly share code, notes, and snippets.

View barak007's full-sized avatar

barak igal barak007

View GitHub Profile
@barak007
barak007 / objectify.js
Last active July 11, 2017 09:34
Stylis objectify plugin
'use strict';
var camelCaseCSS = require("camelcase-css");
var stack;
function Declaration(name, value) {
this.type = 'decl';
this.name = name;
this.value = value;
}