/** * Example of lodash usage. * * @export * @class ExampleLodash */ import _ from "lodash"; import { Component, h } from "preact"; export class ExampleLodash extends Component { /** * Creates an instance of ExampleLodash. */ constructor(props?: any, context?: any) { super(props, context); const objA = { name: "bob", car: "porsche" }; const objB = { name: "bill", age: 40 }; this.state = { result1: JSON.stringify(_.assign(objA, objB)) }; } /** * Render the component. * @returns {JSX.Element} */ public render(): JSX.Element { return {this.state.result1}; } }