How to use the autolinker.AnchorTagBuilder.prototype function in autolinker

To help you get started, we’ve selected a few autolinker examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github gregjacobs / Autolinker.js / tests-integration / test-imports.spec.ts View on Github external
it( `AnchorTagBuilder should be a named export of 'autolinker'`, () => {
		expect( AnchorTagBuilder ).toEqual( jasmine.any( Function ) );  // constructor function
		expect( AnchorTagBuilder.prototype.build ).toEqual( jasmine.any( Function ) );
	} );