Commit 19b13741 by Alex MacCaw

fix linter

parent 6634f9e7
...@@ -33,4 +33,4 @@ exports.PersonCompany = resource.create('PersonCompany', {api: 'person'}) ...@@ -33,4 +33,4 @@ exports.PersonCompany = resource.create('PersonCompany', {api: 'person'})
_.omit(options, 'email') _.omit(options, 'email')
); );
} }
}) });
'use strict'; 'use strict';
var resource = require('./resource'); var resource = require('./resource');
var _ = require('lodash');
exports.Watchlist = resource.create('Watchlist', { exports.Watchlist = resource.create('Watchlist', {
api: 'watchlist' api: 'watchlist'
...@@ -9,7 +8,7 @@ exports.Watchlist = resource.create('Watchlist', { ...@@ -9,7 +8,7 @@ exports.Watchlist = resource.create('Watchlist', {
search: function(options) { search: function(options) {
return this.post('/search/all', options); return this.post('/search/all', options);
} }
}) });
exports.WatchlistIndividual = resource.create('WatchlistIndividual', { exports.WatchlistIndividual = resource.create('WatchlistIndividual', {
api: 'watchlist' api: 'watchlist'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment