Files
yaak/src-tauri/plugins/hello-world/index.js
2023-11-05 13:33:23 -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]+/));
}