Skip to content

Commit 3c6550d

Browse files
committed
Simplifying options.position detection.
1 parent 2f1a1ba commit 3c6550d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var commentre = /\/\*[^*]*\*+([^/*][^*]*\*+)*\//g
44

55
module.exports = function(css, options){
66
options = options || {};
7-
options.position = options.position === false ? false : true;
7+
options.position = options.position !== false;
88

99
/**
1010
* Positional.

0 commit comments

Comments
 (0)