mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
import {createRequire} from 'module';
|
||
|
|
const require = createRequire(import.meta.url);
|
||
|
|
|
||
|
|
const testFunction = require('./common');
|
||
|
|
|
||
|
|
export default testFunction;
|