文件操作 - hosted-git-info-from-manifest.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/node_modules/npm/lib/utils/hosted-git-info-from-manifest.js
编辑文件内容
// given a manifest, try to get the hosted git info from it based on // repository (if a string) or repository.url (if an object) // returns null if it's not a valid repo, or not a known hosted repo const hostedGitInfo = require('hosted-git-info') module.exports = mani => { const r = mani.repository const rurl = !r ? null : typeof r === 'string' ? r : typeof r === 'object' && typeof r.url === 'string' ? r.url : null // hgi returns undefined sometimes, but let's always return null here return (rurl && hostedGitInfo.fromUrl(rurl.replace(/^git\+/, ''))) || null }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件