Skip to content

Commit a56597f

Browse files
committed
fix plain.js
1 parent e204ea2 commit a56597f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/formats/plain.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import _ from 'lodash';
22
import getPath from '../getPath.js';
33

44
const checkBolleanNull = (value) => {
5-
if (_.isNull(value) || _.isBoolean(value)) {
5+
if (_.isNull(value) || _.isBoolean(value)|| _.isNumber(value)) {
66
return value;
77
}
88
return `'${value}'`;

0 commit comments

Comments
 (0)