gamalielmendez / node-fpdf

port de la libreria FPDF de PHP a Javascript
MIT License
18 stars 9 forks source link

How to import PHP_CoreFunctions #3

Closed angeljqv closed 2 years ago

angeljqv commented 2 years ago

I try this

const { str_repeat } = require('node-fpdf')
const { str_repeat } = require('node-fpdf/PHP_CoreFunctions')
const { str_repeat } = require('./PHP_CoreFunctions')
const { str_repeat } = require('PHP_CoreFunctions')

but always i get with all them undefined or

code: 'MODULE_NOT_FOUND',

I'm trying to extend FPDF class for add some scripts, and i need the php core functions for avoid duplicate the same code

angeljqv commented 2 years ago

This works require('node-fpdf/src/PHP_CoreFunctions')