UNPKG

336 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
7var MapStore = require('./lib/map-store').MapStore;
8/**
9 * @module Exports
10 */
11module.exports = {
12 createSourceMapStore: function (opts) {
13 return new MapStore(opts);
14 }
15};
16
17