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

Change the function name of findNoteTitle.js from find to findNoteTitle

This commit is contained in:
asmsuechan
2017-05-05 22:03:55 -07:00
parent 19f8930f5a
commit 20411a2fd5
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
export function find (value) {
export function findNoteTitle (value) {
let splitted = value.split('\n')
let title = null
let isMarkdownInCode = false
@@ -28,5 +28,5 @@ export function find (value) {
}
export default {
find
findNoteTitle
}