Skip to content

Commit

Permalink
chore(xo): resolve lint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
terinjokes committed Apr 29, 2016
1 parent ee2d2ad commit 67bdca6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = function (tag, properties, children) {
}

properties = properties || {};
children = typeof children === "undefined" ? null : children;
children = typeof children === 'undefined' ? null : children;

// When a selector, parse the tag name and fill out the properties object
if (typeof tag === 'string') {
Expand Down
4 changes: 2 additions & 2 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,13 @@ test('a basic Component', t => {
}

let hnode = h(Component, {
place: "world",
place: 'world',
onComponentDidUpdate: DidUpdate
});
t.deepEqual(hnode, createVNode({
tag: Component,
attrs: {
place: "world"
place: 'world'
},
hooks: {
componentDidUpdate: DidUpdate
Expand Down

0 comments on commit 67bdca6

Please sign in to comment.