Files
yaak-mountain-loop/src-tauri/plugins/hello-world/index.js
2023-10-30 06:35:52 -07:00

8 lines
203 B
JavaScript

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