Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Converted to ES6.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronelliott committed Apr 13, 2016
1 parent 45e81e8 commit af3f3ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion handlers/mongo-collection-create.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var is = require('is');
const is = require('is');

module.exports = function($opts) {
var collection = $opts.collection,
Expand Down
2 changes: 1 addition & 1 deletion handlers/mongo-collection-delete.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var is = require('is');
const is = require('is');

module.exports = function($opts) {
var resource = $opts.resource || '$mongo';
Expand Down
2 changes: 1 addition & 1 deletion handlers/mongo-collection-get.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var is = require('is');
const is = require('is');

module.exports = function($opts) {
var inject = $opts.inject,
Expand Down
2 changes: 1 addition & 1 deletion handlers/mongo-collection-list.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var is = require('is');
const is = require('is');

module.exports = function($opts) {
var resource = $opts.resource || '$mongo';
Expand Down
2 changes: 1 addition & 1 deletion handlers/mongo-collection-update.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var is = require('is');
const is = require('is');

module.exports = function($opts) {
var collection = $opts.collection,
Expand Down

0 comments on commit af3f3ea

Please sign in to comment.