Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit f8adeeb

Browse files
author
TATSUNO Yasuhiro
authored
Merge pull request #8 from exoego/no-author
Remove author anotation
2 parents 2d1c5b9 + 349bd78 commit f8adeeb

File tree

154 files changed

+0
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+0
-227
lines changed

app/common/src/main/scala/io/scalajs/nodejs/Assert.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import scala.scalajs.js.annotation.JSImport
1212
*
1313
* The API for the assert module is Locked. This means that there will be no additions or changes to any of the
1414
* methods implemented and exposed by the module.
15-
1615
*/
1716
@js.native
1817
trait Assert extends IEventEmitter {
@@ -134,7 +133,6 @@ trait Assert extends IEventEmitter {
134133

135134
/**
136135
* Assert Singleton
137-
138136
*/
139137
@js.native
140138
@JSImport("assert", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/Console.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import scala.scalajs.js.annotation.JSImport
1717
* used without calling require('console').</li>
1818
* </ul>
1919
* @see https://nodejs.org/dist/latest-v8.x/docs/api/console.html
20-
2120
*/
2221
@js.native
2322
@JSImport("console", "Console")
@@ -150,7 +149,6 @@ class Console(stdout: Writable, stderr: Writable = js.native) extends js.Object
150149
* inspecting large complicated objects. Defaults to 2. To make it recurse indefinitely, pass null.
151150
* @param colors if true, then the output will be styled with ANSI color codes. Defaults to false. Colors are customizable;
152151
* see customizing util.inspect() colors.
153-
154152
*/
155153
class ConsoleDirOptions(var showHidden: js.UndefOr[Boolean] = js.undefined,
156154
var depth: js.UndefOr[Int] = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/Error.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import scala.scalajs.js.annotation.{JSGlobal, JSImport}
1010
* Stack traces are dependent on V8's stack trace API. Stack traces extend only to either (a) the
1111
* beginning of synchronous code execution, or (b) the number of frames given by the property
1212
* Error.stackTraceLimit, whichever is smaller.
13-
1413
*/
1514
@js.native
1615
@JSImport("errors", "Error")
@@ -33,7 +32,6 @@ class Error(message0: String = js.native) extends js.Object {
3332

3433
/**
3534
* Error Singleton
36-
3735
*/
3836
@js.native
3937
@JSGlobal

app/common/src/main/scala/io/scalajs/nodejs/Global.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import scala.scalajs.js
88
* In browsers, the top-level scope is the global scope. That means that in browsers if you're in the global scope var
99
* something will define a global variable. In Node.js this is different. The top-level scope is not the global scope;
1010
* var something inside an Node.js module will be local to that module.
11-
1211
*/
1312
@js.native
1413
trait Global extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/Module.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import scala.scalajs.js.annotation.JSGlobal
77
* In each module, the module free variable is a reference to the object representing the current module.
88
* For convenience, module.exports is also accessible via the exports module-global. module isn't actually
99
* a global but rather local to each module.
10-
1110
* @see [[https://nodejs.org/api/modules.html#modules_the_module_object]]
1211
*/
1312
@js.native
@@ -64,7 +63,6 @@ trait Module extends js.Object {
6463

6564
/**
6665
* Module Companion
67-
6866
*/
6967
object Module {
7068

app/common/src/main/scala/io/scalajs/nodejs/Process.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import scala.scalajs.js.UndefOr
1111

1212
/**
1313
* The process object is a global object and can be accessed from anywhere. It is an instance of EventEmitter.
14-
1514
*/
1615
@js.native
1716
trait Process extends IEventEmitter {
@@ -406,7 +405,6 @@ trait Process extends IEventEmitter {
406405

407406
/**
408407
* Process Object Companion
409-
410408
*/
411409
object Process {
412410

app/common/src/main/scala/io/scalajs/nodejs/StringDecoder.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import scala.scalajs.js.annotation.JSImport
99
/**
1010
* To use this module, do require('string_decoder'). StringDecoder decodes a buffer to a string. It is a simple
1111
* interface to [[Buffer.toString()]] but provides additional support for utf8.
12-
1312
*/
1413
@js.native
1514
@JSImport("string_decoder", "StringDecoder")

app/common/src/main/scala/io/scalajs/nodejs/SystemError.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import scala.scalajs.js.|
66

77
/**
88
* System Error
9-
109
*/
1110
@js.native
1211
@JSImport("errors", "SystemError")
@@ -52,7 +51,6 @@ class SystemError(message0: String = js.native) extends Error(message0) {
5251

5352
/**
5453
* System Error Singleton
55-
5654
*/
5755
@js.native
5856
@JSImport("errors", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/buffer/Buffer.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import scala.scalajs.js.|
2020
*
2121
* The Buffer class is a global within Node.js, making it unlikely that one would need to ever use require('buffer').
2222
* @see https://nodejs.org/api/buffer.html
23-
2423
*/
2524
@js.native
2625
@JSImport("buffer", "Buffer")

app/common/src/main/scala/io/scalajs/nodejs/buffer/SlowBuffer.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js.annotation.JSImport
1414
* amount of time, it may be appropriate to create an un-pooled Buffer instance using SlowBuffer then copy
1515
* out the relevant bits.
1616
* @see https://nodejs.org/api/buffer.html#buffer_class_slowbuffer
17-
1817
*/
1918
@deprecated("Use Buffer.allocUnsafeSlow() instead.", since = "6.0.0")
2019
@js.native

0 commit comments

Comments
 (0)