mirror of
https://github.com/acamarata/solar-spa.git
synced 2026-07-02 03:40:41 +00:00
Removed dependency on fs
This commit is contained in:
parent
2a729af7d1
commit
9fc46f0784
3 changed files with 9 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "solar-spa",
|
"name": "solar-spa",
|
||||||
"version": "1.1.1",
|
"version": "1.2.0",
|
||||||
"description": "NREL Solar Position Algorithm (SPA) in WebAssembly",
|
"description": "NREL Solar Position Algorithm (SPA) in WebAssembly",
|
||||||
"main": "solar-spa.js",
|
"main": "solar-spa.js",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,12 @@
|
||||||
// solar-spa.js
|
// solar-spa.js
|
||||||
const path = require('path');
|
|
||||||
const spaModule = require('./spa.js');
|
const spaModule = require('./spa.js');
|
||||||
|
const spaBase64 = require('./spa_base64.js'); // Import the Base64-encoded WASM
|
||||||
|
|
||||||
// Set the wasm file path
|
// Convert the Base64-encoded string back to a Uint8Array for use with WebAssembly
|
||||||
spaModule.wasmBinaryFile = path.join(__dirname, 'spa.wasm');
|
const wasmBinary = new Uint8Array(Buffer.from(spaBase64, 'base64'));
|
||||||
|
|
||||||
|
// Use the wasmBinary directly instead of loading it from the file system
|
||||||
|
spaModule.wasmBinary = wasmBinary;
|
||||||
|
|
||||||
module.exports = function spa(
|
module.exports = function spa(
|
||||||
date,
|
date,
|
||||||
|
|
|
||||||
2
spa_base64.js
Normal file
2
spa_base64.js
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue