diff --git a/packages/operators/src/runClass.js b/packages/operators/src/runClass.js index f3b29a33f..65ef30eed 100644 --- a/packages/operators/src/runClass.js +++ b/packages/operators/src/runClass.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import { type } from '@lowdefy/helpers'; const runClass = ({ location, meta, methodName, operator, params, functions, defaultFunction }) => { diff --git a/packages/operators/src/runInstance.js b/packages/operators/src/runInstance.js index b2ef09057..2ec7d6ab1 100644 --- a/packages/operators/src/runInstance.js +++ b/packages/operators/src/runInstance.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import { type } from '@lowdefy/helpers'; const runInstance = ({ location, meta, methodName, operator, params, instanceType }) => { diff --git a/packages/operators/test/NodeParser.test.js b/packages/operators/test/NodeParser.test.js index 7a60abb27..9ab3427a4 100644 --- a/packages/operators/test/NodeParser.test.js +++ b/packages/operators/test/NodeParser.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../src/nodeParser'; diff --git a/packages/operators/test/WebParser.test.js b/packages/operators/test/WebParser.test.js index 0a3886aab..c763a9615 100644 --- a/packages/operators/test/WebParser.test.js +++ b/packages/operators/test/WebParser.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../src/webParser'; diff --git a/packages/operators/test/common/array.test.js b/packages/operators/test/common/array.test.js index 785181d71..67a5246c6 100644 --- a/packages/operators/test/common/array.test.js +++ b/packages/operators/test/common/array.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import array from '../../src/common/array'; const location = 'locationId'; diff --git a/packages/operators/test/common/date.test.js b/packages/operators/test/common/date.test.js index 1d3bc699e..f5de43cb9 100644 --- a/packages/operators/test/common/date.test.js +++ b/packages/operators/test/common/date.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import date from '../../src/common/date'; const location = 'locationId'; diff --git a/packages/operators/test/common/divide.test.js b/packages/operators/test/common/divide.test.js index d409b61d5..9e1b88549 100644 --- a/packages/operators/test/common/divide.test.js +++ b/packages/operators/test/common/divide.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import divide from '../../src/common/divide'; test('_divide param 0 greater than param 1', () => { diff --git a/packages/operators/test/common/gt.test.js b/packages/operators/test/common/gt.test.js index 9b60c3cf4..b2437d58b 100644 --- a/packages/operators/test/common/gt.test.js +++ b/packages/operators/test/common/gt.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import gt from '../../src/common/gt'; const location = 'locationId'; diff --git a/packages/operators/test/common/gte.test.js b/packages/operators/test/common/gte.test.js index 97aa4ad69..8857432c3 100644 --- a/packages/operators/test/common/gte.test.js +++ b/packages/operators/test/common/gte.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import gte from '../../src/common/gte'; const location = 'locationId'; diff --git a/packages/operators/test/common/if_none.test.js b/packages/operators/test/common/if_none.test.js index 8b3906d34..ca1f5a9af 100644 --- a/packages/operators/test/common/if_none.test.js +++ b/packages/operators/test/common/if_none.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import if_none from '../../src/common/if_none'; test('_if_none evaluates true for null and undefined', () => { diff --git a/packages/operators/test/common/json.test.js b/packages/operators/test/common/json.test.js index 304d08248..5f9d4f9e4 100644 --- a/packages/operators/test/common/json.test.js +++ b/packages/operators/test/common/json.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import json from '../../src/common/json'; test('_json.parse string unquoted', () => { diff --git a/packages/operators/test/common/lt.test.js b/packages/operators/test/common/lt.test.js index 2d9ce6267..4c8a9a9c3 100644 --- a/packages/operators/test/common/lt.test.js +++ b/packages/operators/test/common/lt.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import lt from '../../src/common/lt'; const location = 'locationId'; diff --git a/packages/operators/test/common/lte.test.js b/packages/operators/test/common/lte.test.js index cac2714f9..825590a9c 100644 --- a/packages/operators/test/common/lte.test.js +++ b/packages/operators/test/common/lte.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import lte from '../../src/common/lte'; const location = 'locationId'; diff --git a/packages/operators/test/common/math.test.js b/packages/operators/test/common/math.test.js index 801911607..cc63813ce 100644 --- a/packages/operators/test/common/math.test.js +++ b/packages/operators/test/common/math.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import _math from '../../src/common/math'; test('_math called with no method or params', () => { diff --git a/packages/operators/test/common/mql.test.js b/packages/operators/test/common/mql.test.js index 962a2947e..311e2061e 100644 --- a/packages/operators/test/common/mql.test.js +++ b/packages/operators/test/common/mql.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import mql from '../../src/common/mql'; test('_mql.aggregate sort as array params', () => { diff --git a/packages/operators/test/common/object.test.js b/packages/operators/test/common/object.test.js index d3a6faf8a..1ab96b2ce 100644 --- a/packages/operators/test/common/object.test.js +++ b/packages/operators/test/common/object.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import object from '../../src/common/object'; const location = 'locationId'; diff --git a/packages/operators/test/common/product.test.js b/packages/operators/test/common/product.test.js index 754d3bebe..b442039c0 100644 --- a/packages/operators/test/common/product.test.js +++ b/packages/operators/test/common/product.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import product from '../../src/common/product'; test('_product number parameters', () => { diff --git a/packages/operators/test/common/random.test.js b/packages/operators/test/common/random.test.js index 8105134ac..e2d96d4a1 100644 --- a/packages/operators/test/common/random.test.js +++ b/packages/operators/test/common/random.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import random from '../../src/common/random'; const mockRandom = jest.fn(); diff --git a/packages/operators/test/common/string.test.js b/packages/operators/test/common/string.test.js index efb894018..0eea70ef2 100644 --- a/packages/operators/test/common/string.test.js +++ b/packages/operators/test/common/string.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import string from '../../src/common/string'; const location = 'locationId'; diff --git a/packages/operators/test/common/subtract.test.js b/packages/operators/test/common/subtract.test.js index 5ca4b9071..ac0bce5a9 100644 --- a/packages/operators/test/common/subtract.test.js +++ b/packages/operators/test/common/subtract.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import subtract from '../../src/common/subtract'; test('_subtract param 0 greater than param 1', () => { diff --git a/packages/operators/test/common/sum.test.js b/packages/operators/test/common/sum.test.js index ab01d3a41..116fcec30 100644 --- a/packages/operators/test/common/sum.test.js +++ b/packages/operators/test/common/sum.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import sum from '../../src/common/sum'; test('_sum number parameters', () => { diff --git a/packages/operators/test/common/uri.test.js b/packages/operators/test/common/uri.test.js index 4b792445d..74bb6bc7d 100644 --- a/packages/operators/test/common/uri.test.js +++ b/packages/operators/test/common/uri.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import uri from '../../src/common/uri'; test('_uri.decode strings', () => { diff --git a/packages/operators/test/common/yaml.test.js b/packages/operators/test/common/yaml.test.js index 1c7d983ac..435e562ec 100644 --- a/packages/operators/test/common/yaml.test.js +++ b/packages/operators/test/common/yaml.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import yaml from '../../src/common/yaml'; test('_yaml.parse string unquoted', () => { diff --git a/packages/operators/test/node/args.test.js b/packages/operators/test/node/args.test.js index 2cb622b3c..2649b1398 100644 --- a/packages/operators/test/node/args.test.js +++ b/packages/operators/test/node/args.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const args = { diff --git a/packages/operators/test/node/base64.test.js b/packages/operators/test/node/base64.test.js index 4226183ae..61bc67c68 100644 --- a/packages/operators/test/node/base64.test.js +++ b/packages/operators/test/node/base64.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import base64 from '../../src/node/base64'; test('_base64.decode a string', () => { diff --git a/packages/operators/test/node/diff.test.js b/packages/operators/test/node/diff.test.js index ce3649c90..51af0d3ca 100644 --- a/packages/operators/test/node/diff.test.js +++ b/packages/operators/test/node/diff.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import diff from '../../src/node/diff'; const location = 'locationId'; diff --git a/packages/operators/test/node/get.test.js b/packages/operators/test/node/get.test.js index 7ea7741c1..127aad7e8 100644 --- a/packages/operators/test/node/get.test.js +++ b/packages/operators/test/node/get.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/global.test.js b/packages/operators/test/node/global.test.js index f8071798f..4d4f65831 100644 --- a/packages/operators/test/node/global.test.js +++ b/packages/operators/test/node/global.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/input.test.js b/packages/operators/test/node/input.test.js index fcd438275..23d61bf2f 100644 --- a/packages/operators/test/node/input.test.js +++ b/packages/operators/test/node/input.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/log.test.js b/packages/operators/test/node/log.test.js index c89d44f05..38976fe2f 100644 --- a/packages/operators/test/node/log.test.js +++ b/packages/operators/test/node/log.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/logic.test.js b/packages/operators/test/node/logic.test.js index c74f61222..0cf8995ba 100644 --- a/packages/operators/test/node/logic.test.js +++ b/packages/operators/test/node/logic.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const arr0 = [0, 0]; diff --git a/packages/operators/test/node/nunjucks.test.js b/packages/operators/test/node/nunjucks.test.js index d56982053..5fa7a17bc 100644 --- a/packages/operators/test/node/nunjucks.test.js +++ b/packages/operators/test/node/nunjucks.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const state = { diff --git a/packages/operators/test/node/operator.test.js b/packages/operators/test/node/operator.test.js index c588ea4c1..157cc93e5 100644 --- a/packages/operators/test/node/operator.test.js +++ b/packages/operators/test/node/operator.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const state = { diff --git a/packages/operators/test/node/regex.test.js b/packages/operators/test/node/regex.test.js index e1d5726aa..2a1a55e7f 100644 --- a/packages/operators/test/node/regex.test.js +++ b/packages/operators/test/node/regex.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const state = { diff --git a/packages/operators/test/node/secret.test.js b/packages/operators/test/node/secret.test.js index e0ba28466..5bd135440 100644 --- a/packages/operators/test/node/secret.test.js +++ b/packages/operators/test/node/secret.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/state.test.js b/packages/operators/test/node/state.test.js index 3cd066b63..bfe1eb11e 100644 --- a/packages/operators/test/node/state.test.js +++ b/packages/operators/test/node/state.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import NodeParser from '../../src/nodeParser'; diff --git a/packages/operators/test/node/type.test.js b/packages/operators/test/node/type.test.js index f861f6bac..fdc2c08b9 100644 --- a/packages/operators/test/node/type.test.js +++ b/packages/operators/test/node/type.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const state = { diff --git a/packages/operators/test/node/url_query.test.js b/packages/operators/test/node/url_query.test.js index 6c8e46be1..e8d971e29 100644 --- a/packages/operators/test/node/url_query.test.js +++ b/packages/operators/test/node/url_query.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import NodeParser from '../../src/nodeParser'; const urlQuery = { diff --git a/packages/operators/test/node/uuid.test.js b/packages/operators/test/node/uuid.test.js index e2851c647..4fecf9cb5 100644 --- a/packages/operators/test/node/uuid.test.js +++ b/packages/operators/test/node/uuid.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import { v4 as uuidv4 } from 'uuid'; import uuid from '../../src/node/uuid'; diff --git a/packages/operators/test/runClass.test.js b/packages/operators/test/runClass.test.js index aabe87da6..37473f0e4 100644 --- a/packages/operators/test/runClass.test.js +++ b/packages/operators/test/runClass.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import runClass from '../src/runClass'; const location = 'locationId'; diff --git a/packages/operators/test/runInstance.test.js b/packages/operators/test/runInstance.test.js index 68c666809..36063cf6f 100644 --- a/packages/operators/test/runInstance.test.js +++ b/packages/operators/test/runInstance.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import runInstance from '../src/runInstance'; const location = 'locationId'; diff --git a/packages/operators/test/web/action_log.test.js b/packages/operators/test/web/action_log.test.js index b2f6d0090..01fcadadb 100644 --- a/packages/operators/test/web/action_log.test.js +++ b/packages/operators/test/web/action_log.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/args.test.js b/packages/operators/test/web/args.test.js index 4ba2e3830..20d85354b 100644 --- a/packages/operators/test/web/args.test.js +++ b/packages/operators/test/web/args.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/base64.test.js b/packages/operators/test/web/base64.test.js index 22f9ba591..7411a2767 100644 --- a/packages/operators/test/web/base64.test.js +++ b/packages/operators/test/web/base64.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import base64 from '../../src/web/base64'; test('_base64.decode a string', () => { diff --git a/packages/operators/test/web/get.test.js b/packages/operators/test/web/get.test.js index 65252a1bd..aac74839b 100644 --- a/packages/operators/test/web/get.test.js +++ b/packages/operators/test/web/get.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/action_log.test.js b/packages/operators/test/web/getFromContext/action_log.test.js index a9d9070c1..75829855c 100644 --- a/packages/operators/test/web/getFromContext/action_log.test.js +++ b/packages/operators/test/web/getFromContext/action_log.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/addListener.test.js b/packages/operators/test/web/getFromContext/addListener.test.js index a47aa01b0..4c340b400 100644 --- a/packages/operators/test/web/getFromContext/addListener.test.js +++ b/packages/operators/test/web/getFromContext/addListener.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/input.test.js b/packages/operators/test/web/getFromContext/input.test.js index 16aa5f1f6..a44a85aa0 100644 --- a/packages/operators/test/web/getFromContext/input.test.js +++ b/packages/operators/test/web/getFromContext/input.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/request_details.test.js b/packages/operators/test/web/getFromContext/request_details.test.js index 70a46719c..d66273631 100644 --- a/packages/operators/test/web/getFromContext/request_details.test.js +++ b/packages/operators/test/web/getFromContext/request_details.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/state.test.js b/packages/operators/test/web/getFromContext/state.test.js index 7c3ef7e33..b12e0d505 100644 --- a/packages/operators/test/web/getFromContext/state.test.js +++ b/packages/operators/test/web/getFromContext/state.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/getFromContext/url_query.test.js b/packages/operators/test/web/getFromContext/url_query.test.js index 11c32cc66..4774fb160 100644 --- a/packages/operators/test/web/getFromContext/url_query.test.js +++ b/packages/operators/test/web/getFromContext/url_query.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../../src/webParser'; diff --git a/packages/operators/test/web/global.test.js b/packages/operators/test/web/global.test.js index 849753fc0..e7b8cfa65 100644 --- a/packages/operators/test/web/global.test.js +++ b/packages/operators/test/web/global.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/input.test.js b/packages/operators/test/web/input.test.js index 25bac45ab..1bf077f6f 100644 --- a/packages/operators/test/web/input.test.js +++ b/packages/operators/test/web/input.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/list_contexts.test.js b/packages/operators/test/web/list_contexts.test.js index 472ecba4f..51cdff6d6 100644 --- a/packages/operators/test/web/list_contexts.test.js +++ b/packages/operators/test/web/list_contexts.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/log.test.js b/packages/operators/test/web/log.test.js index 97d9730a3..3898f2141 100644 --- a/packages/operators/test/web/log.test.js +++ b/packages/operators/test/web/log.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/logic.test.js b/packages/operators/test/web/logic.test.js index 1ba8cef95..bb9829241 100644 --- a/packages/operators/test/web/logic.test.js +++ b/packages/operators/test/web/logic.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const context = { diff --git a/packages/operators/test/web/media.test.js b/packages/operators/test/web/media.test.js index bc84f4e66..9eebf280d 100644 --- a/packages/operators/test/web/media.test.js +++ b/packages/operators/test/web/media.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable no-global-assign */ import media from '../../src/web/media'; diff --git a/packages/operators/test/web/menu.test.js b/packages/operators/test/web/menu.test.js index fc405b3c3..365258088 100644 --- a/packages/operators/test/web/menu.test.js +++ b/packages/operators/test/web/menu.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/nunjucks.test.js b/packages/operators/test/web/nunjucks.test.js index 2a69f1b1f..98299a0c9 100644 --- a/packages/operators/test/web/nunjucks.test.js +++ b/packages/operators/test/web/nunjucks.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/operator.test.js b/packages/operators/test/web/operator.test.js index 448cdabe3..05e6cc13b 100644 --- a/packages/operators/test/web/operator.test.js +++ b/packages/operators/test/web/operator.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/regex.test.js b/packages/operators/test/web/regex.test.js index ee559645c..fc1ecaeee 100644 --- a/packages/operators/test/web/regex.test.js +++ b/packages/operators/test/web/regex.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/request.test.js b/packages/operators/test/web/request.test.js index 491f3e2a8..25e31dcf5 100644 --- a/packages/operators/test/web/request.test.js +++ b/packages/operators/test/web/request.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/request_details.test.js b/packages/operators/test/web/request_details.test.js index ee7dc8d44..80ab15227 100644 --- a/packages/operators/test/web/request_details.test.js +++ b/packages/operators/test/web/request_details.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/state.test.js b/packages/operators/test/web/state.test.js index 7e7ccfc2d..4ef7bba32 100644 --- a/packages/operators/test/web/state.test.js +++ b/packages/operators/test/web/state.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /* eslint-disable max-classes-per-file */ import WebParser from '../../src/webParser'; diff --git a/packages/operators/test/web/type.test.js b/packages/operators/test/web/type.test.js index 56d54d256..aaa779a9b 100644 --- a/packages/operators/test/web/type.test.js +++ b/packages/operators/test/web/type.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = { diff --git a/packages/operators/test/web/url_query.test.js b/packages/operators/test/web/url_query.test.js index 19d2db31c..4c80df57c 100644 --- a/packages/operators/test/web/url_query.test.js +++ b/packages/operators/test/web/url_query.test.js @@ -1,3 +1,19 @@ +/* + Copyright 2020 Lowdefy, Inc + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + import WebParser from '../../src/webParser'; const args = {