From 19fc1fd674738e4cdb9c3dee02872501f77e2ace Mon Sep 17 00:00:00 2001 From: David Dreher Date: Sat, 2 Mar 2019 14:30:31 +0100 Subject: [PATCH] rename const --- browser/main/NoteList/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index 78b7a8cf..e83acad4 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -26,15 +26,15 @@ const { remote } = require('electron') const { dialog } = remote const WP_POST_PATH = '/wp/v2/posts' -const matchStartingTitleNumber = new RegExp('^([0-9]*\.?[0-9]+).*$') +const regexMatchStartingTitleNumber = new RegExp('^([0-9]*\.?[0-9]+).*$') function sortByCreatedAt (a, b) { return new Date(b.createdAt) - new Date(a.createdAt) } function sortByAlphabetical (a, b) { - const matchA = matchStartingTitleNumber.exec(a.title) - const matchB = matchStartingTitleNumber.exec(b.title) + const matchA = regexMatchStartingTitleNumber.exec(a.title) + const matchB = regexMatchStartingTitleNumber.exec(b.title) if (matchA && matchA.length === 2 && matchB && matchB.length === 2) { // Both note titles are starting with a float. We will compare it now.