Skip to content

Commit

Permalink
chore: Update CI node version
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Jan 3, 2018
1 parent d982d2e commit aee644e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions circle.yml
@@ -1,10 +1,10 @@
machine:
node:
version: v0.12.16
version: v6

dependencies:
pre:
- npm install -g npm@2.15.11
- npm install -g npm@4.x.x
override:
- npm install

Expand Down
6 changes: 3 additions & 3 deletions src/adapters/refract/getUriParameters.coffee
Expand Up @@ -7,9 +7,9 @@ getUriParameters = (hrefVariables, options) ->
return undefined

hrefVariables.content.map((hrefVariable) ->
typeAttributes = hrefVariable.attributes.get('typeAttributes')?.toValue()
required = typeAttributes?.contains('required') || false
typeAttributes = hrefVariable.attributes.get('typeAttributes')
required = typeAttributes?.contains('required') or false

title = hrefVariable.title.toValue()
key = hrefVariable.key.toValue()
value = hrefVariable.value
Expand Down

0 comments on commit aee644e

Please sign in to comment.