UNPKG

320 BJavaScriptView Raw
1/*
2 Copyright 2012-2015, Yahoo Inc.
3 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
4 */
5'use strict';
6
7const { MapStore } = require('./lib/map-store');
8/**
9 * @module Exports
10 */
11module.exports = {
12 createSourceMapStore(opts) {
13 return new MapStore(opts);
14 }
15};