facet-core

Base object that provides common functionality and gets extended by the other facet modules

Usage no npm install needed!

<script type="module">
  import facetCore from 'https://cdn.skypack.dev/facet-core';
</script>

README

This module is currently in alpha and not suitable for production use.

core

Base object that provides common functionality and gets extended by the other facet modules

Example

"use strict";
var util = require('util'),
  ApiCore = require('facet-core').ApiCore;

var ProductAPI = function ( options ){};

/**
 * Product API inherits from Core API
 */
util.inherits(ProductAPI, ApiCore);