From 1ca9f23e4775f6386942bfda53af7c13f9c367e7 Mon Sep 17 00:00:00 2001 From: Thomas <31802793+ThomasNotTom@users.noreply.github.com> Date: Fri, 6 Jun 2025 12:36:05 +0100 Subject: [PATCH] Create line break operation --- src/core/operations/LineBreak.mjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/core/operations/LineBreak.mjs diff --git a/src/core/operations/LineBreak.mjs b/src/core/operations/LineBreak.mjs new file mode 100644 index 00000000..d740ae33 --- /dev/null +++ b/src/core/operations/LineBreak.mjs @@ -0,0 +1,15 @@ +/** + * @author ThomasNotTom + * @copyright Crown Copyright 2016 + * @license Apache-2.0 + */ + +import Operation from "../Operation.mjs"; + + +/** + * Line Break operation + */ +class LineBreak extends Operation {} + +export default LineBreak;