Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sangupta/as3utils
Utility classes for ActionScript based projects.
https://github.com/sangupta/as3utils
Last synced: 3 months ago
JSON representation
Utility classes for ActionScript based projects.
- Host: GitHub
- URL: https://github.com/sangupta/as3utils
- Owner: sangupta
- License: apache-2.0
- Created: 2011-07-05T10:43:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-03T09:51:07.000Z (over 12 years ago)
- Last Synced: 2024-06-23T20:44:49.559Z (5 months ago)
- Language: ActionScript
- Homepage: http://www.sangupta.com/projects/as3utils
- Size: 1.06 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actionscript-sorted - as3utils - Utility classes for ActionScript based projects. (Utilities / Other Utilities)
README
as3utils
--------Utility classes for ActionScript based projects including Flex projects. Some of the utility classes are specific to AIR applications and require Adobe AIR libraries to run. Such classes provide the isSupported method as a guide.
Library Details
---------------The library consists of the following utility classes
- ArrayUtils: Operations on working with arrays, like contains, removeItem etc.
- AssertUtils: Operations on strings/arrays/lists/collections to see if they are null, empty etc
- BooleanUtils: Operations on converting `Boolean` to `String` and vice-versa
- DateUtils: Operations like checking for leap year, compute difference in two dates
- FileUtils: Operations on files/directories like read, write, copy, delete etc
- IOUtils: Operations on streams to read, write and close
- NumberUtils: Commons operations like factorial, gcd, factorialLog, log etc.
- StringUtils: Operations on `String` like left/right padding, abbreviations, trim, starts/ends with etc.
- SystemUtils: Utility checks on operating systems and their specific versions
- WebUtils: Function to extract header value from a given set of response headers
- XMLUtils: Operations around reading files to XMLIn addition a special class called `ExtendedEncryptedLocalStore` is provided. This class helps to get/put basic ActionScript data types like `int`, `uint`, `String`, `Number` etc.
Documentation
-------------ActionScript documentation for the project is available at http://www.sangupta.com/docs/as3utils
Versioning
----------For transparency and insight into our release cycle, and for striving to maintain backward compatibility, as3utils will be maintained under the Semantic Versioning guidelines as much as possible.
Releases will be numbered with the follow format:
`..`
And constructed with the following guidelines:
* Breaking backward compatibility bumps the major
* New additions without breaking backward compatibility bumps the minor
* Bug fixes and misc changes bump the patchFor more information on SemVer, please visit http://semver.org/.
License
-------Copyright 2011-2012, Sandeep Gupta
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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.