Skip to content

Commit e6b9cef

Browse files
committed
fix: remove lodash from index
1 parent 10d13d6 commit e6b9cef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/store/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
getEmbeddedScope,
66
isUnsavedFilePath,
77
} from "../utils";
8-
import _ from "lodash";
98
import * as codeManager from "../code-manager";
109
import MarkerStore from "./markers";
1110
import Kernel from "../kernel";
@@ -94,7 +93,7 @@ export class Store {
9493

9594
const cellRanges = codeManager.getCells(editor);
9695

97-
_.forEach(cellRanges, (cell) => {
96+
cellRanges.forEach((cell) => {
9897
const { start, end } = cell;
9998
let source = codeManager.getTextInRange(editor, start, end);
10099
source = source ? source : "";

0 commit comments

Comments
 (0)