Files
yaak-mountain-loop/src-tauri/plugins/hello-world/index.js
Gregory Schier d36d023a5c Move plugins back
2023-11-08 12:34:14 -08:00

8 lines
198 B
JavaScript

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]+/));
}