Skip to content

Commit cb72262

Browse files
author
Mat Ryer
committed
added licence
1 parent a9f35cc commit cb72262

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

LICENCE.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
over.js - BETA
2+
Elegant function overloading in JavaScript.
3+
4+
by Mat Ryer and Ryan Quinn
5+
Copyright (c) 2013 Stretchr, Inc.
6+
7+
Please consider promoting this project if you find it useful.
8+
9+
Permission is hereby granted, free of charge, to any person obtaining a copy of this
10+
software and associated documentation files (the "Software"), to deal in the Software
11+
without restriction, including without limitation the rights to use, copy, modify, merge,
12+
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
13+
to whom the Software is furnished to do so, subject to the following conditions:
14+
15+
The above copyright notice and this permission notice shall be included in all copies
16+
or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
19+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
20+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
21+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.

src/over.js

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
/*
2+
3+
over.js - BETA
4+
Elegant function overloading in JavaScript.
5+
6+
by Mat Ryer and Ryan Quinn
7+
Copyright (c) 2013 Stretchr, Inc.
8+
9+
Please consider promoting this project if you find it useful.
10+
11+
Permission is hereby granted, free of charge, to any person obtaining a copy of this
12+
software and associated documentation files (the "Software"), to deal in the Software
13+
without restriction, including without limitation the rights to use, copy, modify, merge,
14+
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
15+
to whom the Software is furnished to do so, subject to the following conditions:
16+
17+
The above copyright notice and this permission notice shall be included in all copies
18+
or substantial portions of the Software.
19+
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
21+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
22+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
23+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25+
DEALINGS IN THE SOFTWARE.
26+
27+
*/
128
(function(global){
229

330
global.MakeOver = function(){

0 commit comments

Comments
 (0)