Move plugins back to root dir

This commit is contained in:
Gregory Schier
2023-11-06 07:18:53 -08:00
parent 5bfcccbb2f
commit 0d2eb509e8
11 changed files with 1 additions and 1 deletions

View File

@@ -1,4 +0,0 @@
export function greet() {
// Call Rust-provided fn!
sayHello('Plugin');
}

View File

@@ -1,7 +0,0 @@
import { greet } from './greet.js';
export function hello() {
greet();
console.log('Try JSON parse', JSON.parse(`{ "hello": 123 }`).hello);
console.log('Try RegExp', '123'.match(/[\d]+/));
}