Skip to content

Commit 0b5a9cd

Browse files
author
Irene Alvarado
committed
Merge main
2 parents daa0b88 + 5d978df commit 0b5a9cd

11 files changed

Lines changed: 224301 additions & 153158 deletions

File tree

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/checkout@v2
6363
# The Flat Action step. We fetch the data in the http_url and save it as downloaded_filename
6464
- name: Fetch data
65-
uses: githubocto/flat@v2
65+
uses: githubocto/flat@v3
6666
with:
6767
http_url: # THE URL YOU WISH TO FETCH GOES HERE
6868
downloaded_filename: # The http_url gets saved and renamed in our repository. Example: data.json, data.csv, image.png
@@ -114,6 +114,18 @@ In `http` mode this can be anything. This can be any endpoint: a json, csv, txt,
114114

115115
A path to a local Deno javascript or typescript file for postprocessing the `downloaded_filename` file. Read more in the ["Postprocessing section"](https://github.com/githubocto/flat#postprocessing).
116116

117+
#### `mask` (optional)
118+
119+
If your `http_url` string contains secrets, you can choose to mask it from the commit message. You have two options:
120+
121+
**Option 1**: use a string boolean
122+
123+
`mask: true # removes the source entirely from the commit message, defaults to false`
124+
125+
**Option 2**: use a string array with each secret to mask
126+
127+
`mask: '["${{ secrets.SECRET1 }}", "${{ secrets.SECRET2 }}"]'`
128+
117129
### SQL Mode
118130
119131
#### `sql_connstring`
@@ -142,6 +154,18 @@ In `sql` mode this should be one of `csv` or `json`. SQL query results will be s
142154

143155
> ⚠️ While the JSON is not pretty-printed, CSV is often a more efficient serialization for tabular data.
144156

157+
#### `typeorm_config` (optional)
158+
159+
A JSON string representing a configuration passed to [TypeORMs createConnection function](https://orkhan.gitbook.io/typeorm/docs/connection-api#main-api).
160+
161+
A common use case for this value is connecting your [Flat action to a Heroku database](https://github.com/typeorm/typeorm/issues/278).
162+
163+
For instance, you can pass the following configuration string to your Flat action in order to connect to a Heroku Postgres database.
164+
165+
```yaml
166+
typeorm_config: '{"ssl":true,"extra":{"ssl":{"rejectUnauthorized":false}}}'
167+
```
168+
145169
#### `postprocess` (optional)
146170

147171
A path to a local Deno javascript or typescript file for postprocessing the `downloaded_filename` file. Read more in the ["Postprocessing section"](https://github.com/githubocto/flat#postprocessing).
@@ -156,7 +180,7 @@ A signed number describing the number of bytes that changed in this run. If the
156180

157181
You can add a `postprocess` input in the Action which is path to a [deno](https://deno.land) Javascript or Typescript script that will be invoked to postprocess your data after it is fetched. This path is relative to the root of your repo.
158182

159-
The script can use either `Deno.args[0]` or the name of the `downloaded_filename` to access the file fetched by Flat Data.
183+
The script can use either `Deno.args[0]` or the name of the `downloaded_filename` to access the file fetched by Flat Data.
160184

161185
```ts
162186
import { readJSON, writeJSON } from 'https://deno.land/x/flat/mod.ts'

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ inputs:
1010
required: false
1111
authorization:
1212
description: 'A string to send as a header for authorizing API requests.'
13+
mask:
14+
description: 'A string array of secrets to strip from the http_url or a string boolean'
1315
required: false
1416
sql_connstring:
1517
description: 'A connection string for making a SQL query.'
@@ -18,6 +20,9 @@ inputs:
1820
description: 'A path (relative to the root of your repo) of a SQL query file to execute for fetching data.'
1921
required: false
2022
default: '.github/workflows/query.sql'
23+
typeorm_config:
24+
description: 'A JSON string representing a configuration passed to TypeORMs createConnection function'
25+
required: false
2126
postprocess:
2227
description: 'A path (relative to the root of your repo) or a URL to a deno postprocessing script.'
2328
required: false

dist/LICENSE

Lines changed: 198 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,33 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
754754
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
755755

756756

757+
bignumber.js
758+
MIT
759+
The MIT Licence.
760+
761+
Copyright (c) 2019 Michael Mclaughlin
762+
763+
Permission is hereby granted, free of charge, to any person obtaining
764+
a copy of this software and associated documentation files (the
765+
'Software'), to deal in the Software without restriction, including
766+
without limitation the rights to use, copy, modify, merge, publish,
767+
distribute, sublicense, and/or sell copies of the Software, and to
768+
permit persons to whom the Software is furnished to do so, subject to
769+
the following conditions:
770+
771+
The above copyright notice and this permission notice shall be
772+
included in all copies or substantial portions of the Software.
773+
774+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
775+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
776+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
777+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
778+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
779+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
780+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
781+
782+
783+
757784
bl
758785
MIT
759786
The MIT License (MIT)
@@ -875,6 +902,31 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
875902
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
876903

877904

905+
code-point-at
906+
MIT
907+
The MIT License (MIT)
908+
909+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
910+
911+
Permission is hereby granted, free of charge, to any person obtaining a copy
912+
of this software and associated documentation files (the "Software"), to deal
913+
in the Software without restriction, including without limitation the rights
914+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
915+
copies of the Software, and to permit persons to whom the Software is
916+
furnished to do so, subject to the following conditions:
917+
918+
The above copyright notice and this permission notice shall be included in
919+
all copies or substantial portions of the Software.
920+
921+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
922+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
923+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
924+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
925+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
926+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
927+
THE SOFTWARE.
928+
929+
878930
color-convert
879931
MIT
880932
Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
@@ -1604,30 +1656,6 @@ Apache License
16041656
limitations under the License.
16051657

16061658

1607-
emoji-regex
1608-
MIT
1609-
Copyright Mathias Bynens <https://mathiasbynens.be/>
1610-
1611-
Permission is hereby granted, free of charge, to any person obtaining
1612-
a copy of this software and associated documentation files (the
1613-
"Software"), to deal in the Software without restriction, including
1614-
without limitation the rights to use, copy, modify, merge, publish,
1615-
distribute, sublicense, and/or sell copies of the Software, and to
1616-
permit persons to whom the Software is furnished to do so, subject to
1617-
the following conditions:
1618-
1619-
The above copyright notice and this permission notice shall be
1620-
included in all copies or substantial portions of the Software.
1621-
1622-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1623-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1624-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1625-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1626-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1627-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1628-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1629-
1630-
16311659
extend
16321660
MIT
16331661
The MIT License (MIT)
@@ -2036,6 +2064,31 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20362064
IN THE SOFTWARE.
20372065

20382066

2067+
iconv-lite
2068+
MIT
2069+
Copyright (c) 2011 Alexander Shtuchkin
2070+
2071+
Permission is hereby granted, free of charge, to any person obtaining
2072+
a copy of this software and associated documentation files (the
2073+
"Software"), to deal in the Software without restriction, including
2074+
without limitation the rights to use, copy, modify, merge, publish,
2075+
distribute, sublicense, and/or sell copies of the Software, and to
2076+
permit persons to whom the Software is furnished to do so, subject to
2077+
the following conditions:
2078+
2079+
The above copyright notice and this permission notice shall be
2080+
included in all copies or substantial portions of the Software.
2081+
2082+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2083+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2084+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2085+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2086+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2087+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2088+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2089+
2090+
2091+
20392092
inflight
20402093
ISC
20412094
The ISC License
@@ -2077,15 +2130,27 @@ PERFORMANCE OF THIS SOFTWARE.
20772130

20782131
is-fullwidth-code-point
20792132
MIT
2080-
MIT License
2133+
The MIT License (MIT)
20812134

20822135
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
20832136

2084-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2137+
Permission is hereby granted, free of charge, to any person obtaining a copy
2138+
of this software and associated documentation files (the "Software"), to deal
2139+
in the Software without restriction, including without limitation the rights
2140+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2141+
copies of the Software, and to permit persons to whom the Software is
2142+
furnished to do so, subject to the following conditions:
20852143

2086-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2144+
The above copyright notice and this permission notice shall be included in
2145+
all copies or substantial portions of the Software.
20872146

2088-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2147+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2148+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2149+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2150+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2151+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2152+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2153+
THE SOFTWARE.
20892154

20902155

20912156
is-typedarray
@@ -2110,6 +2175,9 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21102175
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21112176

21122177

2178+
isarray
2179+
MIT
2180+
21132181
isstream
21142182
MIT
21152183
The MIT License (MIT)
@@ -2751,6 +2819,31 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
27512819
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
27522820

27532821

2822+
number-is-nan
2823+
MIT
2824+
The MIT License (MIT)
2825+
2826+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2827+
2828+
Permission is hereby granted, free of charge, to any person obtaining a copy
2829+
of this software and associated documentation files (the "Software"), to deal
2830+
in the Software without restriction, including without limitation the rights
2831+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2832+
copies of the Software, and to permit persons to whom the Software is
2833+
furnished to do so, subject to the following conditions:
2834+
2835+
The above copyright notice and this permission notice shall be included in
2836+
all copies or substantial portions of the Software.
2837+
2838+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2839+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2840+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2841+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2842+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2843+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2844+
THE SOFTWARE.
2845+
2846+
27542847
oauth-sign
27552848
Apache-2.0
27562849
Apache License
@@ -3225,6 +3318,29 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32253318
THE SOFTWARE.
32263319

32273320

3321+
process-nextick-args
3322+
MIT
3323+
# Copyright (c) 2015 Calvin Metcalf
3324+
3325+
Permission is hereby granted, free of charge, to any person obtaining a copy
3326+
of this software and associated documentation files (the "Software"), to deal
3327+
in the Software without restriction, including without limitation the rights
3328+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3329+
copies of the Software, and to permit persons to whom the Software is
3330+
furnished to do so, subject to the following conditions:
3331+
3332+
The above copyright notice and this permission notice shall be included in all
3333+
copies or substantial portions of the Software.
3334+
3335+
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3336+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3337+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3338+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3339+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3340+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3341+
SOFTWARE.**
3342+
3343+
32283344
psl
32293345
MIT
32303346
The MIT License (MIT)
@@ -3734,6 +3850,29 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37343850
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37353851
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37363852

3853+
sqlstring
3854+
MIT
3855+
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
3856+
3857+
Permission is hereby granted, free of charge, to any person obtaining a copy
3858+
of this software and associated documentation files (the "Software"), to deal
3859+
in the Software without restriction, including without limitation the rights
3860+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3861+
copies of the Software, and to permit persons to whom the Software is
3862+
furnished to do so, subject to the following conditions:
3863+
3864+
The above copyright notice and this permission notice shall be included in
3865+
all copies or substantial portions of the Software.
3866+
3867+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3868+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3869+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3870+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3871+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3872+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3873+
THE SOFTWARE.
3874+
3875+
37373876
sshpk
37383877
MIT
37393878
Copyright Joyent, Inc. All rights reserved.
@@ -3758,15 +3897,27 @@ IN THE SOFTWARE.
37583897

37593898
string-width
37603899
MIT
3761-
MIT License
3900+
The MIT License (MIT)
37623901

37633902
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
37643903

3765-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3904+
Permission is hereby granted, free of charge, to any person obtaining a copy
3905+
of this software and associated documentation files (the "Software"), to deal
3906+
in the Software without restriction, including without limitation the rights
3907+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3908+
copies of the Software, and to permit persons to whom the Software is
3909+
furnished to do so, subject to the following conditions:
37663910

3767-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3911+
The above copyright notice and this permission notice shall be included in
3912+
all copies or substantial portions of the Software.
37683913

3769-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3914+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3915+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3916+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3917+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3918+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3919+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3920+
THE SOFTWARE.
37703921

37713922

37723923
string_decoder
@@ -4081,6 +4232,21 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40814232
OTHER DEALINGS IN THE SOFTWARE.
40824233

40834234

4235+
uri-js
4236+
BSD-2-Clause
4237+
Copyright 2011 Gary Court. All rights reserved.
4238+
4239+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4240+
4241+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
4242+
4243+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
4244+
4245+
THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4246+
4247+
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
4248+
4249+
40844250
util-deprecate
40854251
MIT
40864252
(The MIT License)

0 commit comments

Comments
 (0)