mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
import Expression from './expression.js'
|
|
|
|
class TrueExp extends Expression {
|
|
execute(inputNoteSet, executionContext, searchContext) {
|
|
return inputNoteSet;
|
|
}
|
|
}
|
|
|
|
export default TrueExp;
|