webpack sources:Webpack的源代码处理类 Source code
webpack源 包含多个表示Source类。 可以要求Source提供源代码,大小,源映射和哈希。 Source 所有源的基类。 公开方法 所有方法都应视为昂贵,因为它们可能需要进行计算。 source Source . prototype . source ( ) - > String | Buffer 以字符串或缓冲区(表示二进制源)的形式返回表示的源代码。 buffer Source . prototype . buffer ( ) - > Buffer 返回表示的源代码为Buffer。 字符串将转换为utf-8。 size Source . prototype . size ( ) - > Number 返回所表示源代码的大小(以字节为单位)。 map Source . prototype . map ( options ?: Object ) - > Objec
用户评论