We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d13d6 commit e6b9cefCopy full SHA for e6b9cef
lib/store/index.ts
@@ -5,7 +5,6 @@ import {
5
getEmbeddedScope,
6
isUnsavedFilePath,
7
} from "../utils";
8
-import _ from "lodash";
9
import * as codeManager from "../code-manager";
10
import MarkerStore from "./markers";
11
import Kernel from "../kernel";
@@ -94,7 +93,7 @@ export class Store {
94
93
95
const cellRanges = codeManager.getCells(editor);
96
97
- _.forEach(cellRanges, (cell) => {
+ cellRanges.forEach((cell) => {
98
const { start, end } = cell;
99
let source = codeManager.getTextInRange(editor, start, end);
100
source = source ? source : "";
0 commit comments