website-scraper/node-website-scraper

View on GitHub
lib/config/resource-type-by-ext.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import types from './resource-types.js';

// should contain same data as ./resource-ext-by-type
export default {
    '.html': types.html,
    '.htm': types.html,
    '.css': types.css,
    '.js': types.js
};