use .reverse()[0] instead of .at(-1): not supported in older app env

This commit is contained in:
dragonwocky 2021-11-30 23:04:02 +11:00
parent 8f8dafeb70
commit 022613d66b
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ export default async function ({ web }, db) {
const lines = $codeBlock.lastElementChild.innerText.split(/\r\n|\r|\n/),
wordWrap = $codeBlock.lastElementChild.style.wordBreak === 'break-all';
if (lines.at(-1) === '') lines.pop();
if (lines.reverse()[0] === '') lines.pop();
let lineNumbers = '';
for (let i = 1; i <= lines.length + 1; i++) {

View File

@ -48,7 +48,7 @@ export default async function ({ web, components }, db) {
for (const $header of $headerBlocks) {
const id = $header.dataset.blockId.replace(/-/g, ''),
placeholder = $header.querySelector('[placeholder]').getAttribute('placeholder'),
headerDepth = +placeholder.at(-1);
headerDepth = +[...placeholder].reverse()[0];
if (depth && depth < headerDepth) {
indent += 18;
} else if (depth > headerDepth) {