I am currently working on a project using Angular 2 and I'm interested in finding out if there is a way to incorporate AngularJS functionalities into my Angular 2 application.
For example, in AngularJS, I used to perform the following operations:
- angular.isString(value)
- angular.isArray(value)
- angular.copy(value)
I would like to know if there is a module or package available that can assist me in performing these operations in Angular 2 or TypeScript?
Thank you in advance.