mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
use .js extension for require() as a preparation for future migration to ESM
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
const becca = require('../../becca/becca');
|
||||
const log = require('../../services/log');
|
||||
const NotFoundError = require("../../errors/not_found_error");
|
||||
const becca = require('../../becca/becca.js');
|
||||
const log = require('../../services/log.js');
|
||||
const NotFoundError = require('../../errors/not_found_error.js');
|
||||
|
||||
function getNotesAndBranchesAndAttributes(noteIds) {
|
||||
noteIds = new Set(noteIds);
|
||||
|
||||
Reference in New Issue
Block a user