1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Fix to use strict equal

This commit is contained in:
asmsuechan
2017-05-04 17:21:27 -07:00
parent ffc4ca1dd4
commit 19f8930f5a

View File

@@ -13,7 +13,7 @@ export function find (value) {
}
}
if (title == null) {
if (title === null) {
title = ''
for (let i = 0; i < splitted.length; i++) {
let trimmedLine = splitted[i].trim()