feat: refactoring project
This commit is contained in:
5
node_modules/webpack/lib/util/StringXor.js
generated
vendored
5
node_modules/webpack/lib/util/StringXor.js
generated
vendored
@@ -17,7 +17,6 @@
|
||||
* to create a hash of the current state of the compilation. By XOR'ing the Module hashes, it
|
||||
* doesn't matter if the Module hashes are sorted or not. This is useful because it allows us to avoid sorting the
|
||||
* Module hashes.
|
||||
*
|
||||
* @example
|
||||
* ```js
|
||||
* const xor = new StringXor();
|
||||
@@ -25,7 +24,6 @@
|
||||
* xor.add('world');
|
||||
* console.log(xor.toString());
|
||||
* ```
|
||||
*
|
||||
* @example
|
||||
* ```js
|
||||
* const xor = new StringXor();
|
||||
@@ -44,7 +42,6 @@ class StringXor {
|
||||
|
||||
/**
|
||||
* Adds a string to the current StringXor object.
|
||||
*
|
||||
* @param {string} str string
|
||||
* @returns {void}
|
||||
*/
|
||||
@@ -84,7 +81,6 @@ class StringXor {
|
||||
* here because "latin1" encoding is a single-byte encoding that can represent all characters in the
|
||||
* [ISO-8859-1 character set](https://en.wikipedia.org/wiki/ISO/IEC_8859-1). This is useful when working
|
||||
* with binary data that needs to be represented as a string.
|
||||
*
|
||||
* @returns {string} Returns a string that represents the current state of the StringXor object.
|
||||
*/
|
||||
toString() {
|
||||
@@ -94,7 +90,6 @@ class StringXor {
|
||||
|
||||
/**
|
||||
* Updates the hash with the current state of the StringXor object.
|
||||
*
|
||||
* @param {Hash} hash Hash instance
|
||||
*/
|
||||
updateHash(hash) {
|
||||
|
||||
Reference in New Issue
Block a user