1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Vendoring

This commit is contained in:
Zack Scholl
2017-10-03 14:43:55 -04:00
parent 21047443d6
commit bef20f3366
2172 changed files with 628903 additions and 0 deletions

View File

@@ -0,0 +1 @@
aaabbb

View File

@@ -0,0 +1 @@
<b>aaa</b><i>bbb</i>

View File

@@ -0,0 +1 @@
hello, world

View File

@@ -0,0 +1 @@
<b>hello</b>, <i>world</i>

View File

@@ -0,0 +1,32 @@
function Animal(name) {
this.name = name;
}
Animal.prototype.sayHello = function() {
return 'Hello from ' + this.name;
};
Animal.prototype.makeNoise = function() {
return this.noise || '<chirp>';
};
function Dog(name, breed) {
this.name = name;
this.breed = breed;
this.noise = 'Woof!';
}
Dog.prototype = new Animal();
Dog.prototype.sayExtendedHello = function() {
return this.sayHello() + ', ' + this.breed;
};
Dog.prototype.bark = function() {
return this.noise;
};
module.exports = {
Animal: Animal,
Dog: Dog,
};

View File

@@ -0,0 +1,32 @@
function Animal(name) {
this.name = name;
}
Animal.prototype.sayHello = function() {
return &#39;Hello from &#39; + this.name;
};
Animal.prototype.makeNoise = function() {
return this.noise || <1>&#39;&lt;chirp&gt;&#39;;</1>
};
function Dog(name, breed) {
this.name = name;
this.breed = breed;
this.noise = &#39;Woof!&#39;;
}
Dog.prototype = new Animal();
<WOOF>Dog</WOOF>.prototype.sayExtendedHello = function() {
return this.sayHello() + &#39;, &#39; + this.breed;
};
Dog.prototype.bark = function() {
return this.noise;
};
module.exports = {
Animal: Animal,
Dog: Dog,
};

View File

@@ -0,0 +1 @@
abcd

View File

@@ -0,0 +1 @@
<1>a<2>bc</2>d</1>

View File

@@ -0,0 +1 @@
aabbccdd

View File

@@ -0,0 +1 @@
<1>aa</1><2>bb</2><3>cc</3>d<4>d</4>