Skip to content

Commit

Permalink
style: standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
meenahoda committed Jan 3, 2019
1 parent d564077 commit c381009
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const getGUID = () => {
let d = Date.now()
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = (d + Math.random() * 16) % 16 | 0; //eslint-disable-line
d = Math.floor(d / 16);
d = Math.floor(d / 16)
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16); //eslint-disable-line
})
}
Expand Down
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-env mocha */
'use strict'

const dotEnv = require('dotenv').config()
const dotEnv = require('dotenv').config() // eslint-disable-line
const path = require('path')
const fs = require('fs')
const chai = require('chai')
Expand Down Expand Up @@ -34,7 +34,7 @@ describe('Tests', function () {
let error

try {
const sp = new Sharepoint()
const sp = new Sharepoint() // eslint-disable-line
} catch (e) {
error = e.message
}
Expand Down

0 comments on commit c381009

Please sign in to comment.