Skip to content

Commit

Permalink
chore: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Jan 23, 2025
1 parent 2ed7f48 commit 10f6b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/language/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function language(options) {
*
* @return {Record<string, any>}
*/
export function createContext(variables, builtins) {
export function createContext(variables) {
return variables.slice().reverse().reduce((context, builtin) => {
context[builtin.name] = () => {};

Expand Down

0 comments on commit 10f6b51

Please sign in to comment.