This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright FSys Tech Limited [FSys]. All rights reserved. | |
| // | |
| // This software owned by FSys Tech Limited [FSys] and is protected by copyright law | |
| // and international copyright treaties. | |
| // | |
| // Access to and use of the software is governed by the terms of the applicable FSys Software | |
| // Services Agreement (the Agreement) and Customer end user license agreements granting | |
| // a non-assignable, non-transferable and non-exclusive license to use the software | |
| // for it's own data processing purposes under the terms defined in the Agreement. | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2022 Safe Online World Ltd. | |
| // | |
| // 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: | |
| // | |
| // The above copyright notice and this permission notice shall be included in all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2022 Safe Online World Ltd. | |
| // | |
| // 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: | |
| // | |
| // The above copyright notice and this permission notice shall be included in all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Copyright (c) 2022, https://github.com/rajibchy All rights reserved. | |
| * Copyrights licensed under the New BSD License. | |
| * See the accompanying LICENSE file for terms. | |
| */ | |
| // 11:29 AM 11/28/2021 | |
| // by Rajib Chy | |
| #ifdef _MSC_VER | |
| #define _WINSOCK_DEPRECATED_NO_WARNINGS | |
| #include <Winsock2.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare interface WebNotificationConfig { | |
| icon?: string; // to be implemented | |
| caption?: string; | |
| content: any; | |
| shadow?: boolean; | |
| width?: string; | |
| height?: string; | |
| style?: boolean | NodeJS.Dict<any>; // {background: '', color: ''} | |
| position?: string; //right, left | |
| timeout?: number; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright FSys Tech Limited [FSys]. All rights reserved. | |
| * | |
| * This software owned by FSys Tech Limited [FSys] and is protected by copyright law | |
| * and international copyright treaties. | |
| * | |
| * Access to and use of the software is governed by the terms of the applicable FSys Software | |
| * Services Agreement (the Agreement) and Customer end user license agreements granting | |
| * a non-assignable, non-transferable and non-exclusive license to use the software | |
| * for it's own data processing purposes under the terms defined in the Agreement. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @ts-check | |
| // 10:30 AM 7/13/2021 | |
| // by rajib chy | |
| export default class DataSource { | |
| /** return copy of data array */ | |
| get data() { | |
| return this._useFilter ? [...this._shadow] : [...this._data]; | |
| } | |
| get isEndReached() { | |
| return this._fromIndex >= this._length |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <![CDATA[copyright]]> | |
| /// Copyright (c) 2018, Sow ( https://safeonline.world, https://www.facebook.com/safeonlineworld). (https://github.com/RKTUXYN) All rights reserved. | |
| /// Copyrights licensed under the New BSD License. | |
| /// See the accompanying LICENSE file for terms. | |
| /// <![CDATA[copyright]]> | |
| /// <![CDATA[Author]]> | |
| /// By Rajib Chy | |
| /// On 6/3/2021 10:43:14 PM | |
| /// <![CDATA[Author]]> | |
| using System; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <![CDATA[copyright]]> | |
| /// Copyright (c) 2018, Sow ( https://safeonline.world, https://www.facebook.com/safeonlineworld). (https://github.com/RKTUXYN) All rights reserved. | |
| /// Copyrights licensed under the New BSD License. | |
| /// See the accompanying LICENSE file for terms. | |
| /// <![CDATA[copyright]]> | |
| /// <![CDATA[Author]]> | |
| /// By Rajib Chy | |
| /// On 5/27/2021 7:56:04 PM | |
| /// <![CDATA[Author]]> | |
| using System; |
NewerOlder