Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit d130caf

Browse files
committed
Changing double to single quotes
Resolves issue #1
1 parent 09051e2 commit d130caf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ var gutil = require('gulp-util')
3636
function options(o, opts) {
3737
return Object.keys(opts || {}).reduce(function(b, a){
3838
if (a in o.flags && opts[a] === true) return b.concat([o.flags[a]]);
39-
else if (a in o.single && typeof opts[a] === "string") return b.concat([o.single[a] + '=' + opts[a]]);
39+
else if (a in o.single && typeof opts[a] === 'string') return b.concat([o.single[a] + '=' + opts[a]]);
4040
else if (a in o.multi) {
41-
if (typeof opts[a] === "string") return b.concat([o.multi[a] + '=' + opts[a]]);
41+
if (typeof opts[a] === 'string') return b.concat([o.multi[a] + '=' + opts[a]]);
4242
else {
4343
return b.concat(opts[a].map(function(x){
4444
return o.multi[a] + '=' + x;

0 commit comments

Comments
 (0)