website
Version:
A set of tools for extracting information out of a website.
18 lines (16 loc) • 362 B
JavaScript
/*
* node-website
* A set of tools for extracting information out of a website.
*
* Licensed under the MIT:
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright (c) 2013, André König (andre.koenig@gmail.com)
*
*/
module.exports = (function () {
'use strict';
return {
getTitle : require('./title').getTitle
};
})();