UNPKG

@testwellioviz/wellioviz

Version:

Provides functionality to visualize well logs, particularly those already converted to JSON, using d3.js visualization library.

13 lines (12 loc) 289 B
class BaseTemplate { constructor(params={}) { this.handle_params(params) } handle_params(params) { for (const [key, value] in Object.entries(params)){ this[key] = value } return this } } module.exports = BaseTemplate