Repository URL to install this package:
|
Version:
2.0.3 ▾
|
import _ from 'lodash';
import BaseSiteMapGenerator from './BaseSiteMapGenerator';
export default class SiteMapGenerator extends BaseSiteMapGenerator {
constructor(opts, type) {
super();
this.name = type || `pages`;
_.extend(this, opts);
}
}